Lots of documentation overhaul - much more documented, cat output works better now.
[jquery.git] / build / docs / js / doc.js
index ec52b66..e5f7fcb 100644 (file)
@@ -17,9 +17,11 @@ $(document).ready(function(){
        }).ToolTipDemo('#fff');
 
        $("a.name").click(function(){
-               $("div.more,div.short",this.parentNode.parentNode).toggle('slow').find("div.desc",function(){
-                       $(this).html( $(this).html().replace(/\n\n/g, "<br/><br/>") );
-               });
+               $("div.more,div.short",this.parentNode.parentNode)
+                       .find("div.desc",function(){
+                               $(this).html( $(this).html().replace(/\n\n/g, "<br/><br/>") );
+                       })
+                       .toggle('slow');
                return false;
        });