blob: d8d8897b3ca74c9c5620c2ba9765b850d36a6c91 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
module('Selection containers - Stoping event propagation');
var SingleSelection = require('select2/selection/single');
var StopPropagation = require('select2/selection/stopPropagation');
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
var CutomSelection = Utils.Decorate(SingleSelection, StopPropagation);
var options = new Options();
test('click event does not propagate', function (assert) {
assert.expect(1);
var $container = $('#qunit-fixture .event-container');
var container = new MockContainer();
var selection = new CutomSelection($('#qunit-fixture select'), options);
var $selection = selection.render();
selection.bind(container, $container);
$container.append($selection);
$container.on('click', function () {
assert.ok(false, 'The click event should have been stopped');
});
$selection.trigger('click');
assert.ok(true, 'Something went wrong if this failed');
});
|