Sha256: 3c2d8e5b5a3378682c102d861e297e818d410631730eb6de79f7f4b44c96d4f4

Contents?: true

Size: 972 Bytes

Versions: 76

Compression:

Stored size: 972 Bytes

Contents

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');
});

Version data entries

76 entries across 76 versions & 5 rubygems

Version Path
card-mod-bootstrap-0.18.1 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.18.0 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.17.0 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.16.0 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.15.6 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.15.5 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.15.4 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.15.3 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.15.1.2 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.15.2.pre1 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.15.1.1 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.15.1 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.15.0 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.14.2 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.14.1 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.14.0 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.13.4 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.13.3 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.13.2 vendor/select2/tests/selection/stopPropagation-tests.js
card-mod-bootstrap-0.13.1 vendor/select2/tests/selection/stopPropagation-tests.js