aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-07-09 16:02:43 -0400
committerScott González <scott.gonzalez@gmail.com>2012-07-09 16:02:43 -0400
commita79d09a905740ce299f57602144144eee9b03af2 (patch)
treee9cfb3fc8330026e27bc21b09c69b6107755e6f8 /ui
parent0fc3afb2a168eef501b272ea45dc4758d007bf74 (diff)
downloadjquery-ui-a79d09a905740ce299f57602144144eee9b03af2.tar.gz
jquery-ui-a79d09a905740ce299f57602144144eee9b03af2.zip
Widget: Create lowercase pseudo selectors. Fixes #8433 - Widget: Create lowercase pseudo selectors.
Diffstat (limited to 'ui')
-rw-r--r--ui/jquery.ui.widget.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js
index 628b63bb0..b5dfaa344 100644
--- a/ui/jquery.ui.widget.js
+++ b/ui/jquery.ui.widget.js
@@ -36,7 +36,7 @@ $.widget = function( name, base, prototype ) {
}
// create selector for plugin
- $.expr[ ":" ][ fullName ] = function( elem ) {
+ $.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) {
return !!$.data( elem, fullName );
};