diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-13 22:01:44 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-20 14:27:56 -0400 |
commit | 89bf0d057bc9ec552b042a997501e094e95da543 (patch) | |
tree | bdb5023f4df056eddd43052b5224ebfedbfc47ac /demos/spinner/time.html | |
parent | d157b59a511be306f32f8d5a84b575961013ebd0 (diff) | |
download | jquery-ui-89bf0d057bc9ec552b042a997501e094e95da543.tar.gz jquery-ui-89bf0d057bc9ec552b042a997501e094e95da543.zip |
Spinner: Remove core event/alias and deprecated module dependencies
Diffstat (limited to 'demos/spinner/time.html')
-rw-r--r-- | demos/spinner/time.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/spinner/time.html b/demos/spinner/time.html index 2a527e42b..229b0e6b4 100644 --- a/demos/spinner/time.html +++ b/demos/spinner/time.html @@ -41,7 +41,7 @@ $(function() { $( "#spinner" ).timespinner(); - $( "#culture" ).change(function() { + $( "#culture" ).on( "change", function() { var current = $( "#spinner" ).timespinner( "value" ); Globalize.culture( $(this).val() ); $( "#spinner" ).timespinner( "value", current ); |