aboutsummaryrefslogtreecommitdiffstats
path: root/build/docs/js/doc.js
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2006-12-12 18:26:52 +0000
committerJohn Resig <jeresig@gmail.com>2006-12-12 18:26:52 +0000
commitfb11b33d68f64ea446f2f8c6d3ef2aed3652349f (patch)
tree84ae0e29c07f81d482038186274c202721833170 /build/docs/js/doc.js
parent025049a67a01399b38281bed9af189be5395c46d (diff)
downloadjquery-fb11b33d68f64ea446f2f8c6d3ef2aed3652349f.tar.gz
jquery-fb11b33d68f64ea446f2f8c6d3ef2aed3652349f.zip
Fixed an issue with .find(expr,Function) and a Safari bug.
Diffstat (limited to 'build/docs/js/doc.js')
-rw-r--r--build/docs/js/doc.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js
index cf373eab5..dcf42a5c0 100644
--- a/build/docs/js/doc.js
+++ b/build/docs/js/doc.js
@@ -7,7 +7,8 @@ var types = {
Hash: "A Javascript object that contains key/value pairs in the form of properties and values.",
"Array&lt;Element&gt;": "An Array of DOM Elements.",
"Array&lt;String&gt;": "An Array of strings.",
- Function: "A reference to a Javascript function."
+ Function: "A reference to a Javascript function.",
+ XMLHttpRequest: "An XMLHttpRequest object (referencing a HTTP request)."
};
$(document).ready(function(){
@@ -18,14 +19,14 @@ $(document).ready(function(){
$("a.name").click(function(){
$("div.more,div.short",this.parentNode.parentNode)
- .find("div.desc",function(){
+ .find("div.desc").each(function(){
$(this).html( $(this).html().replace(/\n\n/g, "<br/><br/>") );
- })
+ }).end()
.toggle('slow');
return false;
});
$("#docs").alphaPager(function(a){
- return $.fn.text.apply( [a.childNodes[1]] ).replace(/^\$\./,"").substr(0,1).toUpperCase();
+ return $.fn.text.apply( [a.getElementsByTagName("span")[2]] ).replace(/^\$\./,"").substr(0,1).toUpperCase();
});
});