diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-05-20 16:25:04 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-05-25 15:44:43 -0400 |
commit | af35f0bbc9064ec66bee19c730bf4cb9de2834db (patch) | |
tree | 79e2e0aba8b9436ef9ab9d8c36537c7781cb3b3b /demos/spinner | |
parent | 63b89b7884d72d026f67c29eb234ebc1be738aa0 (diff) | |
download | jquery-ui-af35f0bbc9064ec66bee19c730bf4cb9de2834db.tar.gz jquery-ui-af35f0bbc9064ec66bee19c730bf4cb9de2834db.zip |
Spinner: Changed casing of option numberformat -> numberFormat.
Diffstat (limited to 'demos/spinner')
-rw-r--r-- | demos/spinner/currency.html | 2 | ||||
-rw-r--r-- | demos/spinner/decimal.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/spinner/currency.html b/demos/spinner/currency.html index 8288e4c3d..1e9b37d08 100644 --- a/demos/spinner/currency.html +++ b/demos/spinner/currency.html @@ -27,7 +27,7 @@ max: 2500,
step: 25,
start: 1000,
- numberformat: "C"
+ numberFormat: "C"
});
});
diff --git a/demos/spinner/decimal.html b/demos/spinner/decimal.html index 0a38fc51f..cdc659298 100644 --- a/demos/spinner/decimal.html +++ b/demos/spinner/decimal.html @@ -18,7 +18,7 @@ $(function() {
$("#spinner").spinner({
step: 0.01,
- numberformat: "n"
+ numberFormat: "n"
});
$("#culture").change(function() {
|