diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-07-09 12:57:01 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-07-09 12:57:01 -0400 |
commit | 1991a9073d746757179353ed1529f597d95e54b9 (patch) | |
tree | 14e8407d3e9c78378d0d9bb03d95aee3139fe15d /ui/jquery.ui.menu.js | |
parent | 508598124117f3dd501c3e7bcd4dd08f6cfb0064 (diff) | |
download | jquery-ui-1991a9073d746757179353ed1529f597d95e54b9.tar.gz jquery-ui-1991a9073d746757179353ed1529f597d95e54b9.zip |
Menu: Remove extraneous spaces from selector.
Diffstat (limited to 'ui/jquery.ui.menu.js')
-rw-r--r-- | ui/jquery.ui.menu.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.menu.js b/ui/jquery.ui.menu.js index 758676199..127a09bb5 100644 --- a/ui/jquery.ui.menu.js +++ b/ui/jquery.ui.menu.js @@ -303,7 +303,7 @@ $.widget( "ui.menu", { // Don't refresh list items that are already adapted menus = submenus.add( this.element ); - menus.children( ":not( .ui-menu-item ):has( a )" ) + menus.children( ":not(.ui-menu-item):has(a)" ) .addClass( "ui-menu-item" ) .attr( "role", "presentation" ) .children( "a" ) |