2009/dap/ReSpec.js/js respec.js,1.172,1.173

Update of /sources/public/2009/dap/ReSpec.js/js
In directory hutz:/tmp/cvs-serv21950

Modified Files:
	respec.js 
Log Message:
make typedef dereferencable too


Index: respec.js
===================================================================
RCS file: /sources/public/2009/dap/ReSpec.js/js/respec.js,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -d -r1.172 -r1.173
--- respec.js	22 Nov 2011 16:32:45 -0000	1.172
+++ respec.js	24 Nov 2011 17:36:40 -0000	1.173
@@ -1435,7 +1435,7 @@
             var inf = w.definition(idl);
             var df = w.makeMarkup();
             idl.parentNode.replaceChild(df, idl);
-            if (inf.type == "interface" || inf.type == "exception" || inf.type == "dictionary") infNames.push(inf.id);
+            if (inf.type == "interface" || inf.type == "exception" || inf.type == "dictionary" || inf.type == "typedef") infNames.push(inf.id);
         }
         document.normalize();
         var ants = document.querySelectorAll("a:not([href])");

Received on Thursday, 24 November 2011 17:36:44 UTC