diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-13 22:02:48 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-20 14:27:57 -0400 |
commit | 5ee324dd72dce71e09b80f5f1b9548683a54047c (patch) | |
tree | 3705f9d56e8124a67125d1e56654d97b32ad5a55 /demos/effect/animate.html | |
parent | e543253468398ab0c3f3603d9523a4673f1491ea (diff) | |
download | jquery-ui-5ee324dd72dce71e09b80f5f1b9548683a54047c.tar.gz jquery-ui-5ee324dd72dce71e09b80f5f1b9548683a54047c.zip |
Effects: Remove core event/alias and deprecated module dependencies
Diffstat (limited to 'demos/effect/animate.html')
-rw-r--r-- | demos/effect/animate.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/effect/animate.html b/demos/effect/animate.html index 7de535114..853b72326 100644 --- a/demos/effect/animate.html +++ b/demos/effect/animate.html @@ -16,7 +16,7 @@ <script> $(function() { var state = true; - $( "#button" ).click(function() { + $( "#button" ).on( "click", function() { if ( state ) { $( "#effect" ).animate({ backgroundColor: "#aa0000", |