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 /tests/visual/effects/scale.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 'tests/visual/effects/scale.html')
-rw-r--r-- | tests/visual/effects/scale.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/visual/effects/scale.html b/tests/visual/effects/scale.html index 648a7027b..0723d9458 100644 --- a/tests/visual/effects/scale.html +++ b/tests/visual/effects/scale.html @@ -21,12 +21,12 @@ total *= this.options.length; }); - opts.change( doAnim ); - doer.click( doAnim ); - $( "#cyclePrev" ).click(function() { + opts.on( "change", doAnim ); + doer.on( "click", doAnim ); + $( "#cyclePrev" ).on( "click", function() { cycle( -1 ); }); - $( "#cycleNext" ).click(function() { + $( "#cycleNext" ).on( "click", function() { cycle( 1 ); }); |