aboutsummaryrefslogtreecommitdiffstats
path: root/demos/spinner/currency.html
diff options
context:
space:
mode:
authorjzaefferer <joern.zaefferer@gmail.com>2011-02-07 18:45:10 +0100
committerjzaefferer <joern.zaefferer@gmail.com>2011-02-07 18:45:10 +0100
commit8fe10dc56081aff37ee405832b808e4a80579618 (patch)
treee0ee4ba559e4b9222e5528331166921ca5962ec9 /demos/spinner/currency.html
parentd808f933eb6457426136ab6e319821bb25f45f7a (diff)
downloadjquery-ui-8fe10dc56081aff37ee405832b808e4a80579618.tar.gz
jquery-ui-8fe10dc56081aff37ee405832b808e4a80579618.zip
Fix spinner demos to latest jquery-global API. Also cleanup.
Diffstat (limited to 'demos/spinner/currency.html')
-rw-r--r--demos/spinner/currency.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/spinner/currency.html b/demos/spinner/currency.html
index 1c2f01a72..44fed4c42 100644
--- a/demos/spinner/currency.html
+++ b/demos/spinner/currency.html
@@ -1,4 +1,4 @@
-<!doctype html>
+<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
@@ -18,7 +18,7 @@
$(function() {
$("#currency").change(function() {
var current = $("#spinner").spinner("value");
- Globalization.preferCulture($(this).val());
+ $.global.preferCulture($(this).val());
$("#spinner").spinner("value", current);
})