aboutsummaryrefslogtreecommitdiff
path: root/dist/js/bootstrap.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 /dist/js/bootstrap.js
parentda98c5c2c39d0499bed07f27ad026f219a52b8f8 (diff)
downloadbootstrap-5ee2a221ca03a008ae17fa576df78dcd92620671.tar.xz
bootstrap-5ee2a221ca03a008ae17fa576df78dcd92620671.zip
fixes #8816
Diffstat (limited to 'dist/js/bootstrap.js')
-rw-r--r--dist/js/bootstrap.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/js/bootstrap.js b/dist/js/bootstrap.js
index 956d4994b..05421141f 100644
--- a/dist/js/bootstrap.js
+++ b/dist/js/bootstrap.js
@@ -235,7 +235,7 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
$.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)))