aboutsummaryrefslogtreecommitdiff
path: root/js/tests/unit/button.js
diff options
context:
space:
mode:
authorJohann-S <[email protected]>2018-03-11 16:18:56 +0100
committerXhmikosR <[email protected]>2019-02-20 22:05:45 +0200
commit7eddee286eb76da4d057a59706e4c512206dab45 (patch)
tree5319cd291c015fcec49e2af0cb1c890d0d966927 /js/tests/unit/button.js
parent0263d1742ce8ad25f0f2de30beebae69b2f55f10 (diff)
downloadbootstrap-7eddee286eb76da4d057a59706e4c512206dab45.tar.xz
bootstrap-7eddee286eb76da4d057a59706e4c512206dab45.zip
remove old references to jquery and some fixes
Diffstat (limited to 'js/tests/unit/button.js')
-rw-r--r--js/tests/unit/button.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/tests/unit/button.js b/js/tests/unit/button.js
index c162e3a9f..0fa19d154 100644
--- a/js/tests/unit/button.js
+++ b/js/tests/unit/button.js
@@ -208,11 +208,11 @@ $(function () {
var $el = $('<div/>')
var $button = $el.bootstrapButton()
- assert.ok(typeof $button.data('bs.button') !== 'undefined')
+ assert.ok(typeof Data.getData($button[0], 'bs.button') !== 'undefined')
- $button.data('bs.button').dispose()
+ Data.getData($button[0], 'bs.button').dispose()
- assert.ok(typeof $button.data('bs.button') === 'undefined')
+ assert.ok(Data.getData($button[0], 'bs.button') === null)
})
QUnit.test('should return button version', function (assert) {