aboutsummaryrefslogtreecommitdiffstats
path: root/demos/spinner/currency.html
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-05-13 22:01:44 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-05-20 14:27:56 -0400
commit89bf0d057bc9ec552b042a997501e094e95da543 (patch)
treebdb5023f4df056eddd43052b5224ebfedbfc47ac /demos/spinner/currency.html
parentd157b59a511be306f32f8d5a84b575961013ebd0 (diff)
downloadjquery-ui-89bf0d057bc9ec552b042a997501e094e95da543.tar.gz
jquery-ui-89bf0d057bc9ec552b042a997501e094e95da543.zip
Spinner: Remove core event/alias and deprecated module dependencies
Diffstat (limited to 'demos/spinner/currency.html')
-rw-r--r--demos/spinner/currency.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/spinner/currency.html b/demos/spinner/currency.html
index b39a431c5..0509e80a0 100644
--- a/demos/spinner/currency.html
+++ b/demos/spinner/currency.html
@@ -16,7 +16,7 @@
<link rel="stylesheet" href="../demos.css">
<script>
$(function() {
- $( "#currency" ).change(function() {
+ $( "#currency" ).on( "change", function() {
$( "#spinner" ).spinner( "option", "culture", $( this ).val() );
});