diff options
author | awgy <josh.varner@gmail.com> | 2010-11-03 02:45:47 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-11-09 09:52:24 -0500 |
commit | e2a693ba78be5a8d9bbe0b55e48d82860a1bbdc3 (patch) | |
tree | d78d3e6378983f473c0e90ec85f0a9c062d84a06 /tests | |
parent | 412d1aa1c9ac0a8a933710fef6d233a061fb9d13 (diff) | |
download | jquery-ui-e2a693ba78be5a8d9bbe0b55e48d82860a1bbdc3.tar.gz jquery-ui-e2a693ba78be5a8d9bbe0b55e48d82860a1bbdc3.zip |
Mouse: tie the preventClickEvent property to the event target, not the container. Fixes #4752 - link event firing on sortable with connect list
Diffstat (limited to 'tests')
-rw-r--r-- | tests/jquery.simulate.js | 1 | ||||
-rw-r--r-- | tests/unit/sortable/sortable_tickets.js | 44 |
2 files changed, 45 insertions, 0 deletions
diff --git a/tests/jquery.simulate.js b/tests/jquery.simulate.js index 3e7ca1090..81d7f62bf 100644 --- a/tests/jquery.simulate.js +++ b/tests/jquery.simulate.js @@ -120,6 +120,7 @@ $.extend($.simulate.prototype, { this.simulateEvent(document, "mousemove", coord); this.simulateEvent(document, "mousemove", coord); this.simulateEvent(target, "mouseup", coord); + this.simulateEvent(target, "click", coord); }, findCenter: function(el) { var el = $(this.target), o = el.offset(); diff --git a/tests/unit/sortable/sortable_tickets.js b/tests/unit/sortable/sortable_tickets.js index e265c2f3a..3edc8c04c 100644 --- a/tests/unit/sortable/sortable_tickets.js +++ b/tests/unit/sortable/sortable_tickets.js @@ -36,4 +36,48 @@ test("#3019: Stop fires too early", function() { }); +test('#4752: link event firing on sortable with connect list', function () { + var fired = {}, + hasFired = function (type) { return (type in fired) && (true === fired[type]); }; + + $('#sortable').clone().attr('id', 'sortable2').insertAfter('#sortable'); + + $('#main ul').sortable({ + connectWith: '#main ul', + change: function (e, ui) { + fired.change = true; + }, + receive: function (e, ui) { + fired.receive = true; + }, + remove: function (e, ui) { + fired.remove = true; + } + }); + + $('#main ul li').live('click.ui-sortable-test', function () { + fired.click = true; + }); + + $('#sortable li:eq(0)').simulate('click'); + ok(!hasFired('change'), 'Click only, change event should not have fired'); + ok(hasFired('click'), 'Click event should have fired'); + + // Drag an item within the first list + fired = {}; + $('#sortable li:eq(0)').simulate('drag', { dx: 0, dy: 40 }); + ok(hasFired('change'), '40px drag, change event should have fired'); + ok(!hasFired('receive'), 'Receive event should not have fired'); + ok(!hasFired('remove'), 'Remove event should not have fired'); + ok(!hasFired('click'), 'Click event should not have fired'); + + // Drag an item from the first list to the second, connected list + fired = {}; + $('#sortable li:eq(0)').simulate('drag', { dx: 0, dy: 150 }); + ok(hasFired('change'), '150px drag, change event should have fired'); + ok(hasFired('receive'), 'Receive event should have fired'); + ok(hasFired('remove'), 'Remove event should have fired'); + ok(!hasFired('click'), 'Click event should not have fired'); +}); + })(jQuery); |