diff options
author | Ben Boyle <benjamins.boyle@gmail.com> | 2011-05-16 21:08:13 +1000 |
---|---|---|
committer | Ben Boyle <benjamins.boyle@gmail.com> | 2011-05-16 21:08:13 +1000 |
commit | a6a8611556205aee7c1d6cb82d4ac47050b94678 (patch) | |
tree | feabcc3a843ee64ced48604d8771b5876242bb7c /demos/button | |
parent | c9e187cd9d3cecdb39ecfb0ab0389614973a40c3 (diff) | |
download | jquery-ui-a6a8611556205aee7c1d6cb82d4ac47050b94678.tar.gz jquery-ui-a6a8611556205aee7c1d6cb82d4ac47050b94678.zip |
Button demo: modified order of selectors. Fixed #7094 - Buttons problem in Opera
Diffstat (limited to 'demos/button')
-rw-r--r-- | demos/button/default.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/button/default.html b/demos/button/default.html index 1ea3fa796..969ec6838 100644 --- a/demos/button/default.html +++ b/demos/button/default.html @@ -11,7 +11,7 @@ <link rel="stylesheet" href="../demos.css"> <script> $(function() { - $( "button, input:submit, a", ".demo" ).button(); + $( "input:submit, a, button", ".demo" ).button(); $( "a", ".demo" ).click(function() { return false; }); }); </script> |