aboutsummaryrefslogtreecommitdiffstats
path: root/build/docs
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2006-08-24 19:43:21 +0000
committerJohn Resig <jeresig@gmail.com>2006-08-24 19:43:21 +0000
commitccf9d4406296fed48aae0989f2303287f133ed9e (patch)
tree03037e2fb0346e22b50bbde3d0643c45fb31441d /build/docs
parent874e4f65eecdf74bb76c361d778aac4ed6158ed6 (diff)
downloadjquery-ccf9d4406296fed48aae0989f2303287f133ed9e.tar.gz
jquery-ccf9d4406296fed48aae0989f2303287f133ed9e.zip
Fixed some bugs, improved the quality of some of the variables.
Diffstat (limited to 'build/docs')
-rw-r--r--build/docs/js/doc.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js
index e2260d77b..ec52b664d 100644
--- a/build/docs/js/doc.js
+++ b/build/docs/js/doc.js
@@ -17,7 +17,7 @@ $(document).ready(function(){
}).ToolTipDemo('#fff');
$("a.name").click(function(){
- $("div.more,div.short",this.parentNode.parentNode).toggle().find("div.desc",function(){
+ $("div.more,div.short",this.parentNode.parentNode).toggle('slow').find("div.desc",function(){
$(this).html( $(this).html().replace(/\n\n/g, "<br/><br/>") );
});
return false;