diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2012-12-26 08:08:48 -0500 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2012-12-26 08:08:48 -0500 |
commit | 0d4022bceb33fb95c41fab768c1829d464861899 (patch) | |
tree | 8584929224e413fd6163c4000fe03b6978f969ec /tests/unit/draggable/draggable_events.js | |
parent | 74d7eac2daabce0411e98ed9d59dada551cdd911 (diff) | |
download | jquery-ui-0d4022bceb33fb95c41fab768c1829d464861899.tar.gz jquery-ui-0d4022bceb33fb95c41fab768c1829d464861899.zip |
Tests: Convert single quotes to double quotes.
Diffstat (limited to 'tests/unit/draggable/draggable_events.js')
-rw-r--r-- | tests/unit/draggable/draggable_events.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/draggable/draggable_events.js b/tests/unit/draggable/draggable_events.js index 07a53e22e..f4ab3a8ea 100644 --- a/tests/unit/draggable/draggable_events.js +++ b/tests/unit/draggable/draggable_events.js @@ -82,7 +82,7 @@ test("stopping the stop callback", function() { expect(1); var el = $("#draggable2").draggable({ - helper: 'clone', + helper: "clone", stop: function() { return false; } }); @@ -91,7 +91,7 @@ test("stopping the stop callback", function() { dy: 10 }); - ok($("#draggable2").data('ui-draggable').helper, "the clone should not be deleted if the stop callback is stopped"); + ok($("#draggable2").data("ui-draggable").helper, "the clone should not be deleted if the stop callback is stopped"); }); |