diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-13 21:54:37 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-20 14:27:55 -0400 |
commit | 12df1b7dad135aa57640be631277db3f7d75d672 (patch) | |
tree | 4eebd1f09cecf57ed2dbdf358e9d4ddaea680fdd /demos/button/default.html | |
parent | 8b4ce807cd97e3cb953995934d6c4f614de9fa03 (diff) | |
download | jquery-ui-12df1b7dad135aa57640be631277db3f7d75d672.tar.gz jquery-ui-12df1b7dad135aa57640be631277db3f7d75d672.zip |
Button: Remove core event/alias and deprecated module dependencies
Diffstat (limited to 'demos/button/default.html')
-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 8c1690969..1bd4f9191 100644 --- a/demos/button/default.html +++ b/demos/button/default.html @@ -13,7 +13,7 @@ $(function() { $( "input[type=submit], a, button" ) .button() - .click(function( event ) { + .on( "click", function( event ) { event.preventDefault(); }); }); |