aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/slider/slider_options.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-07-25 11:08:03 -0400
committerScott González <scott.gonzalez@gmail.com>2011-07-25 11:08:03 -0400
commit510bb40cab3966dde2ca97f10f82c6a165558d40 (patch)
tree4a641f7a011ebffe95584c92095a6b2f4c8eb3c3 /tests/unit/slider/slider_options.js
parent0080f2d5813747cbbe44021197e352564e02b782 (diff)
downloadjquery-ui-510bb40cab3966dde2ca97f10f82c6a165558d40.tar.gz
jquery-ui-510bb40cab3966dde2ca97f10f82c6a165558d40.zip
Tests: Fixed trailing commas.
Diffstat (limited to 'tests/unit/slider/slider_options.js')
-rw-r--r--tests/unit/slider/slider_options.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/slider/slider_options.js b/tests/unit/slider/slider_options.js
index b9a766539..f0abac665 100644
--- a/tests/unit/slider/slider_options.js
+++ b/tests/unit/slider/slider_options.js
@@ -96,7 +96,7 @@ test("step", function() {
min: 0,
value: 0,
step: 10,
- max: 100,
+ max: 100
});
equals( el.slider("value"), 0 );
@@ -116,7 +116,7 @@ el = $('<div></div>').slider({
min: 0,
value: 0,
step: 20,
- max: 100,
+ max: 100
});
el.slider("value", 0);