diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 00:05:15 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 08:06:22 -0400 |
commit | d86ac025ee021728bccecb04b1b16f965e7dcc9f (patch) | |
tree | f06b000ecf0f231150840d05bb16a246a463bcc0 /tests | |
parent | 2626be45337b8edb7be1958e4534db0ef435de56 (diff) | |
download | jquery-ui-d86ac025ee021728bccecb04b1b16f965e7dcc9f.tar.gz jquery-ui-d86ac025ee021728bccecb04b1b16f965e7dcc9f.zip |
Sortable: Style updates
Ref #14246
Ref gh-1588
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/sortable/common.js | 2 | ||||
-rw-r--r-- | tests/unit/sortable/events.js | 2 | ||||
-rw-r--r-- | tests/unit/sortable/options.js | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/tests/unit/sortable/common.js b/tests/unit/sortable/common.js index aefb28b70..a28c2511a 100644 --- a/tests/unit/sortable/common.js +++ b/tests/unit/sortable/common.js @@ -33,7 +33,7 @@ common.testWidget( "sortable", { tolerance: "intersect", zIndex: 1000, - // callbacks + // Callbacks activate: null, beforeStop: null, change: null, diff --git a/tests/unit/sortable/events.js b/tests/unit/sortable/events.js index bf5579fde..74f10dfeb 100644 --- a/tests/unit/sortable/events.js +++ b/tests/unit/sortable/events.js @@ -25,7 +25,7 @@ test("start", function() { ok(hash.item, "UI hash includes: item"); ok(!hash.sender, "UI hash does not include: sender"); - // todo: see if these events should actually have sane values in them + // Todo: see if these events should actually have sane values in them ok("position" in hash, "UI hash includes: position"); ok("offset" in hash, "UI hash includes: offset"); }); diff --git a/tests/unit/sortable/options.js b/tests/unit/sortable/options.js index 744839096..5d24a3606 100644 --- a/tests/unit/sortable/options.js +++ b/tests/unit/sortable/options.js @@ -136,7 +136,7 @@ test( "#8792: issues with floated items in connected lists", function() { element = $( "#qunit-fixture li:eq(0)" ); - // move the first li to the right of the second li in the first ul + // Move the first li to the right of the second li in the first ul element.simulate( "drag", { dx: 55, moves: 15 @@ -144,7 +144,7 @@ test( "#8792: issues with floated items in connected lists", function() { equal( changeCount, 1, "change fired only once (no jitters) when dragging a floated sortable in it's own container" ); - // move the first li ( which is now in the second spot ) + // Move the first li ( which is now in the second spot ) // through the first spot in the second ul to the second spot in the second ul element.simulate( "drag", { dx: 100, |