aboutsummaryrefslogtreecommitdiffstats
path: root/build/docs/js
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2006-12-12 20:33:10 +0000
committerJörn Zaefferer <joern.zaefferer@gmail.com>2006-12-12 20:33:10 +0000
commit6ac46e6a5a6cac509626267865980f4dfbeebc2d (patch)
treee044a3e3610901340e7328f3a3b101b9305efdd7 /build/docs/js
parentfb11b33d68f64ea446f2f8c6d3ef2aed3652349f (diff)
downloadjquery-6ac46e6a5a6cac509626267865980f4dfbeebc2d.tar.gz
jquery-6ac46e6a5a6cac509626267865980f4dfbeebc2d.zip
Got context functions back in, added noteworthy stuff, replaced js linebreak replacer with xstl
Diffstat (limited to 'build/docs/js')
-rw-r--r--build/docs/js/doc.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js
index dcf42a5c0..8a144f0d0 100644
--- a/build/docs/js/doc.js
+++ b/build/docs/js/doc.js
@@ -18,11 +18,7 @@ $(document).ready(function(){
}).ToolTipDemo('#fff');
$("a.name").click(function(){
- $("div.more,div.short",this.parentNode.parentNode)
- .find("div.desc").each(function(){
- $(this).html( $(this).html().replace(/\n\n/g, "<br/><br/>") );
- }).end()
- .toggle('slow');
+ $("div.more,div.short",this.parentNode.parentNode).toggle('slow');
return false;
});