aboutsummaryrefslogtreecommitdiffstats
path: root/build/docs/js/doc.js
diff options
context:
space:
mode:
Diffstat (limited to 'build/docs/js/doc.js')
-rw-r--r--build/docs/js/doc.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js
index ec52b664d..e5f7fcb9a 100644
--- a/build/docs/js/doc.js
+++ b/build/docs/js/doc.js
@@ -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;
});