diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-05-16 05:18:10 -0700 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-05-16 05:18:10 -0700 |
commit | db3d1945b8376f584f23b36680b70a82e5018667 (patch) | |
tree | ee209e3ee4d20e64a58812b6704372e15164174d /demos/button | |
parent | 41205cef4b23749592c832605452af6575970623 (diff) | |
parent | a6a8611556205aee7c1d6cb82d4ac47050b94678 (diff) | |
download | jquery-ui-db3d1945b8376f584f23b36680b70a82e5018667.tar.gz jquery-ui-db3d1945b8376f584f23b36680b70a82e5018667.zip |
Merge pull request #286 from bboyle/ticket7094
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> |