diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2012-10-30 21:50:08 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-10-30 22:19:55 -0400 |
commit | b49e071d39795255e88b13ae172367201484c352 (patch) | |
tree | 4df1090ad188613efe93f4c54949fcd1b66716bf /tests/unit/selectable/selectable_events.js | |
parent | f0daa220d67968f61c42e378b10fcb41687cd215 (diff) | |
download | jquery-ui-b49e071d39795255e88b13ae172367201484c352.tar.gz jquery-ui-b49e071d39795255e88b13ae172367201484c352.zip |
Dev: Standardized the selectable test suite. Fixed #8752 - Dev: Get selectable test suite to pass
Diffstat (limited to 'tests/unit/selectable/selectable_events.js')
-rw-r--r-- | tests/unit/selectable/selectable_events.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/selectable/selectable_events.js b/tests/unit/selectable/selectable_events.js index bfd431bd8..331bae146 100644 --- a/tests/unit/selectable/selectable_events.js +++ b/tests/unit/selectable/selectable_events.js @@ -7,7 +7,7 @@ module("selectable: events"); test("start", function() { expect(2); - el = $("#selectable1"); + var el = $("#selectable1"); el.selectable({ start: function() { ok(true, "drag fired start callback"); @@ -19,7 +19,7 @@ test("start", function() { test("stop", function() { expect(2); - el = $("#selectable1"); + var el = $("#selectable1"); el.selectable({ start: function() { ok(true, "drag fired stop callback"); |