diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-01-28 04:25:30 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-01-28 04:25:30 +0000 |
commit | c802347799d33e0764b9509eef7ea1d518e6d0c5 (patch) | |
tree | 913d5dab1b22f04f8b0cfe85091a6241770d3bec /ui/jquery.ui.autocomplete.js | |
parent | 65b063b0391b4d08b649935958b69b61ea53ffd7 (diff) | |
download | jquery-ui-c802347799d33e0764b9509eef7ea1d518e6d0c5.tar.gz jquery-ui-c802347799d33e0764b9509eef7ea1d518e6d0c5.zip |
Autocomplete: Removed CSS framework classes from text field. We can add them back in when we have full support for form elements.
Diffstat (limited to 'ui/jquery.ui.autocomplete.js')
-rw-r--r-- | ui/jquery.ui.autocomplete.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 6a96d66a0..0ac04d115 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -21,7 +21,7 @@ $.widget( "ui.autocomplete", { _create: function() { var self = this; this.element - .addClass( "ui-autocomplete ui-widget ui-widget-content ui-corner-all" ) + .addClass( "ui-autocomplete" ) .attr( "autocomplete", "off" ) // TODO verify these actually work as intended .attr({ |