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

This commit is contained in:
Ben Boyle 2011-05-16 21:08:13 +10:00
parent c9e187cd9d
commit a6a8611556

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>