Added fix for stray <script> element that was left for IE for the DOMReady check.
[jquery.git] / build / docs / js / doc.js
index 8bd25b1..ec52b66 100644 (file)
@@ -11,10 +11,13 @@ var types = {
 };
 
 $(document).ready(function(){
-       $("span.tooltip").ToolTipDemo('#fff');
+       $("span.tooltip").each(function(){
+               if ( types[ this.innerHTML ] )
+                       this.title = types[ this.innerHTML ];
+       }).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;