aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorBen Boyle <benjamins.boyle@gmail.com>2011-05-16 21:08:13 +1000
committerScott González <scott.gonzalez@gmail.com>2011-05-16 08:18:56 -0400
commit4e3f8bdb70b67882decdecc62c63d39e8ce3d1fc (patch)
tree6e5fc0dbd8c797754907bb858c7aee7dd9940fda /demos
parentc1470492bd902738a54b994ee29ff4eecedae855 (diff)
downloadjquery-ui-4e3f8bdb70b67882decdecc62c63d39e8ce3d1fc.tar.gz
jquery-ui-4e3f8bdb70b67882decdecc62c63d39e8ce3d1fc.zip
Button demo: modified order of selectors. Fixed #7094 - Buttons problem in Opera
(cherry picked from commit a6a8611556205aee7c1d6cb82d4ac47050b94678)
Diffstat (limited to 'demos')
-rw-r--r--demos/button/default.html2
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>