diff options
| author | Johann-S <[email protected]> | 2018-03-11 16:18:56 +0100 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-02-20 22:05:45 +0200 |
| commit | 7eddee286eb76da4d057a59706e4c512206dab45 (patch) | |
| tree | 5319cd291c015fcec49e2af0cb1c890d0d966927 /js/tests/unit/alert.js | |
| parent | 0263d1742ce8ad25f0f2de30beebae69b2f55f10 (diff) | |
| download | bootstrap-7eddee286eb76da4d057a59706e4c512206dab45.tar.xz bootstrap-7eddee286eb76da4d057a59706e4c512206dab45.zip | |
remove old references to jquery and some fixes
Diffstat (limited to 'js/tests/unit/alert.js')
| -rw-r--r-- | js/tests/unit/alert.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/tests/unit/alert.js b/js/tests/unit/alert.js index 588908d66..3fe796e28 100644 --- a/js/tests/unit/alert.js +++ b/js/tests/unit/alert.js @@ -91,7 +91,7 @@ $(function () { var done = assert.async() var $el = $('<div/>') var $alert = $el.bootstrapAlert() - var alertInstance = $alert.data('bs.alert') + var alertInstance = Data.getData($alert[0], 'bs.alert') $alert.one('closed.bs.alert', function () { assert.ok('alert closed') @@ -107,11 +107,11 @@ $(function () { var $el = $('<div/>') var $alert = $el.bootstrapAlert() - assert.ok(typeof $alert.data('bs.alert') !== 'undefined') + assert.ok(typeof Data.getData($alert[0], 'bs.alert') !== 'undefined') - $alert.data('bs.alert').dispose() + Data.getData($alert[0], 'bs.alert').dispose() - assert.ok(typeof $alert.data('bs.button') === 'undefined') + assert.ok(Data.getData($alert[0], 'bs.alert') === null) }) QUnit.test('should return alert version', function (assert) { |
