aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/js/bootstrap-button.js
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-12-08 17:40:42 -0800
committerMark Otto <[email protected]>2012-12-08 17:40:42 -0800
commitbc0b94a3fdc8fe480c74f4494073e2c0addb265e (patch)
treee13fec2ed829b4586fa4044fffc8dbfadddae54e /docs/assets/js/bootstrap-button.js
parentbe5f31480b53555c492e0077c8bb9f419fc48f62 (diff)
parent9376a7c221a64c2bf508d02ea2ccd85748d10fcc (diff)
downloadbootstrap-bc0b94a3fdc8fe480c74f4494073e2c0addb265e.tar.xz
bootstrap-bc0b94a3fdc8fe480c74f4494073e2c0addb265e.zip
Merge branch 'master' into 3.0.0-wip
Conflicts: docs/assets/css/bootstrap.css docs/assets/js/bootstrap.js docs/css.html docs/templates/pages/base-css.mustache docs/templates/pages/components.mustache docs/templates/pages/javascript.mustache less/breadcrumbs.less less/tables.less less/tests/css-tests.html
Diffstat (limited to 'docs/assets/js/bootstrap-button.js')
-rw-r--r--docs/assets/js/bootstrap-button.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/assets/js/bootstrap-button.js b/docs/assets/js/bootstrap-button.js
index f2e3b7729..6e1aa9c81 100644
--- a/docs/assets/js/bootstrap-button.js
+++ b/docs/assets/js/bootstrap-button.js
@@ -64,6 +64,8 @@
/* BUTTON PLUGIN DEFINITION
* ======================== */
+ var old = $.fn.button
+
$.fn.button = function (option) {
return this.each(function () {
var $this = $(this)
@@ -82,6 +84,15 @@
$.fn.button.Constructor = Button
+ /* BUTTON NO CONFLICT
+ * ================== */
+
+ $.fn.button.noConflict = function () {
+ $.fn.button = old
+ return this
+ }
+
+
/* BUTTON DATA-API
* =============== */