Button demo: modified order of selectors. Fixed #7094 - Buttons problem in Opera

(cherry picked from commit a6a8611556)
This commit is contained in:
Ben Boyle 2011-05-16 21:08:13 +10:00 committed by Scott González
parent c1470492bd
commit 4e3f8bdb70

View File

@ -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>