diff --git a/build/build.xml b/build/build.xml
index aef5e5fb3..49568b3cc 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -148,6 +148,13 @@
+
+
+
+
+
+
+
@@ -313,7 +320,7 @@
-
+
diff --git a/build/build/minify-js.sh b/build/build/minify-js.sh
index c94853fa2..2633a2f57 100755
--- a/build/build/minify-js.sh
+++ b/build/build/minify-js.sh
@@ -1,3 +1,3 @@
#!/bin/bash
dir=$(dirname $0)
-`which node nodejs` $dir/uglify.js $1 > $2
+`which node nodejs 2> /dev/null` $dir/uglify.js $1 > $2
diff --git a/demos/accordion/collapsible.html b/demos/accordion/collapsible.html
index d8d0f1918..310e550a9 100644
--- a/demos/accordion/collapsible.html
+++ b/demos/accordion/collapsible.html
@@ -4,7 +4,7 @@
jQuery UI Accordion - Collapse content
-
+
diff --git a/demos/accordion/custom-icons.html b/demos/accordion/custom-icons.html
index a5f3742dc..e2fc9bdb1 100644
--- a/demos/accordion/custom-icons.html
+++ b/demos/accordion/custom-icons.html
@@ -4,7 +4,7 @@
jQuery UI Accordion - Customize icons
-
+
@@ -20,7 +20,7 @@
icons: icons
});
$( "#toggle" ).button().toggle(function() {
- $( "#accordion" ).accordion( "option", "icons", false );
+ $( "#accordion" ).accordion( "option", "icons", null );
}, function() {
$( "#accordion" ).accordion( "option", "icons", icons );
});
diff --git a/demos/accordion/default.html b/demos/accordion/default.html
index 734de8a9e..4afc2b129 100644
--- a/demos/accordion/default.html
+++ b/demos/accordion/default.html
@@ -4,7 +4,7 @@
jQuery UI Accordion - Default functionality
-
+
diff --git a/demos/accordion/fillspace.html b/demos/accordion/fillspace.html
index fa68be01c..3a7d81edc 100644
--- a/demos/accordion/fillspace.html
+++ b/demos/accordion/fillspace.html
@@ -4,7 +4,7 @@
jQuery UI Accordion - Fill space
-
+
diff --git a/demos/accordion/hoverintent.html b/demos/accordion/hoverintent.html
index 279f91483..09360d62d 100644
--- a/demos/accordion/hoverintent.html
+++ b/demos/accordion/hoverintent.html
@@ -4,7 +4,7 @@
jQuery UI Accordion - Open on hoverintent
-
+
@@ -29,7 +29,6 @@
$( this ).unbind( "mouseover", jQuery.event.special.hoverintent.handler );
},
handler: function( event ) {
- event.type = "hoverintent";
var self = this,
args = arguments,
target = $( event.target ),
@@ -50,6 +49,7 @@
function handler() {
if ( ( Math.abs( pX - cX ) + Math.abs( pY - cY ) ) < cfg.sensitivity ) {
clear();
+ event.type = "hoverintent";
jQuery.event.handle.apply( self, args );
} else {
pX = cX;
diff --git a/demos/accordion/mouseover.html b/demos/accordion/mouseover.html
index 7acca1704..6f4bc2e69 100644
--- a/demos/accordion/mouseover.html
+++ b/demos/accordion/mouseover.html
@@ -4,7 +4,7 @@
jQuery UI Accordion - Open on mouseover
-
+
diff --git a/demos/accordion/no-auto-height.html b/demos/accordion/no-auto-height.html
index 19c195b06..c51880b71 100644
--- a/demos/accordion/no-auto-height.html
+++ b/demos/accordion/no-auto-height.html
@@ -4,7 +4,7 @@
jQuery UI Accordion - No auto height
-
+
diff --git a/demos/accordion/sortable.html b/demos/accordion/sortable.html
index 9f2ff61eb..a0a899344 100644
--- a/demos/accordion/sortable.html
+++ b/demos/accordion/sortable.html
@@ -4,7 +4,7 @@
jQuery UI Accordion - Sortable
-
+
diff --git a/demos/addClass/default.html b/demos/addClass/default.html
index 9fbc46a19..38acd8b4c 100644
--- a/demos/addClass/default.html
+++ b/demos/addClass/default.html
@@ -4,7 +4,7 @@
jQuery UI Effects - addClass demo
-
+
+
+
+
+
+
+
Tooltips can be attached to any element. When you hover
+the element with your mouse, the title attribute is displayed in a little box next to the element, just like a native tooltip.
+
But as it's not a native tooltip, it can be styled. Any themes built with
+ThemeRoller
+will also style tooltips accordingly.
+
Tooltips are also useful for form elements, to show some additional information in the context of each field.
+
Your age:
+
Hover the field to see the tooltip.
+
+
+
+
+
+
+
Hover the links above or use the tab key to cycle the focus on each element.
+
+
+
+