aboutsummaryrefslogtreecommitdiffstats
path: root/demos/autocomplete/combobox.html
diff options
context:
space:
mode:
authorFelix Nagel <info@felixnagel.com>2012-11-28 23:29:15 +0100
committerFelix Nagel <info@felixnagel.com>2012-11-28 23:29:15 +0100
commit36533a718da41d4dc82286d2b7ff52a34481dbbb (patch)
tree481804cc832f9b8223fd243de8f6ca8dbd119fa2 /demos/autocomplete/combobox.html
parent4e68c526ab464facc56e5b85ca67f4c6648d2f21 (diff)
parent37ea7341823e7dfe54f37596b1d054b8a2e5c3de (diff)
downloadjquery-ui-36533a718da41d4dc82286d2b7ff52a34481dbbb.tar.gz
jquery-ui-36533a718da41d4dc82286d2b7ff52a34481dbbb.zip
Merge branch 'master' into selectmenu
Diffstat (limited to 'demos/autocomplete/combobox.html')
-rw-r--r--demos/autocomplete/combobox.html28
1 files changed, 12 insertions, 16 deletions
diff --git a/demos/autocomplete/combobox.html b/demos/autocomplete/combobox.html
index 9fd5d4050..6229d47b2 100644
--- a/demos/autocomplete/combobox.html
+++ b/demos/autocomplete/combobox.html
@@ -24,7 +24,7 @@
bottom: 0;
margin-left: -1px;
padding: 0;
- /* adjust styles for IE 6/7 */
+ /* support: IE7 */
*height: 1.7em;
*top: 0.1em;
}
@@ -46,7 +46,7 @@
.addClass( "ui-combobox" )
.insertAfter( select );
- function removeIfInvalid(element) {
+ function removeIfInvalid( element ) {
var value = $( element ).val(),
matcher = new RegExp( "^" + $.ui.autocomplete.escapeRegex( value ) + "$", "i" ),
valid = false;
@@ -56,6 +56,7 @@
return false;
}
});
+
if ( !valid ) {
// remove invalid value, as it didn't match anything
$( element )
@@ -66,8 +67,7 @@
setTimeout(function() {
input.tooltip( "close" ).attr( "title", "" );
}, 2500 );
- input.data( "autocomplete" ).term = "";
- return false;
+ input.data( "ui-autocomplete" ).term = "";
}
}
@@ -103,13 +103,14 @@
});
},
change: function( event, ui ) {
- if ( !ui.item )
- return removeIfInvalid( this );
+ if ( !ui.item ) {
+ removeIfInvalid( this );
+ }
}
})
.addClass( "ui-widget ui-widget-content ui-corner-left" );
- input.data( "autocomplete" )._renderItem = function( ul, item ) {
+ input.data( "ui-autocomplete" )._renderItem = function( ul, item ) {
return $( "<li>" )
.append( "<a>" + item.label + "</a>" )
.appendTo( ul );
@@ -144,19 +145,14 @@
input.focus();
});
- input
- .tooltip({
- position: {
- of: this.button
- },
- tooltipClass: "ui-state-highlight"
- });
+ input.tooltip({
+ tooltipClass: "ui-state-highlight"
+ });
},
- destroy: function() {
+ _destroy: function() {
this.wrapper.remove();
this.element.show();
- $.Widget.prototype.destroy.call( this );
}
});
})( jQuery );