aboutsummaryrefslogtreecommitdiff
path: root/js/button.js
diff options
context:
space:
mode:
authorfat <[email protected]>2013-07-30 13:31:57 -0700
committerfat <[email protected]>2013-07-30 13:31:57 -0700
commit5ee2a221ca03a008ae17fa576df78dcd92620671 (patch)
tree13ff0bd0b460d827eda965291887dee6761fe1d5 /js/button.js
parentda98c5c2c39d0499bed07f27ad026f219a52b8f8 (diff)
downloadbootstrap-5ee2a221ca03a008ae17fa576df78dcd92620671.tar.xz
bootstrap-5ee2a221ca03a008ae17fa576df78dcd92620671.zip
fixes #8816
Diffstat (limited to 'js/button.js')
-rw-r--r--js/button.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/button.js b/js/button.js
index 539e9fead..ae5602fc2 100644
--- a/js/button.js
+++ b/js/button.js
@@ -72,7 +72,7 @@
$.fn.button = function (option) {
return this.each(function () {
var $this = $(this)
- var data = $this.data('button')
+ var data = $this.data('bs.button')
var options = typeof option == 'object' && option
if (!data) $this.data('bs.button', (data = new Button(this, options)))