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/decimal.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/decimal.html')
-rw-r--r-- | demos/spinner/decimal.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/spinner/decimal.html b/demos/spinner/decimal.html index d321f0312..6c3df9439 100644 --- a/demos/spinner/decimal.html +++ b/demos/spinner/decimal.html @@ -21,7 +21,7 @@ numberFormat: "n" }); - $( "#culture" ).change(function() { + $( "#culture" ).on( "change", function() { var current = $( "#spinner" ).spinner( "value" ); Globalize.culture( $(this).val() ); $( "#spinner" ).spinner( "value", current ); |