Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2017-07-01 01:45:27 +0300
committerMark Otto <markdotto@gmail.com>2017-07-01 01:45:27 +0300
commit7f6479b0d9878dc8fc2de2a6787ec0f6450b46c9 (patch)
treedc9802745b6ba7d151a2c0a4df296555e46a968b /js/dist/button.js
parenta7a47081f21c69159cfa5734e9deb2be3a1acaad (diff)
build dist
Diffstat (limited to 'js/dist/button.js')
-rw-r--r--js/dist/button.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/js/dist/button.js b/js/dist/button.js
index cf2edb2939..cd82242c12 100644
--- a/js/dist/button.js
+++ b/js/dist/button.js
@@ -41,14 +41,14 @@ var Button = function ($) {
var Event = {
CLICK_DATA_API: 'click' + EVENT_KEY + DATA_API_KEY,
FOCUS_BLUR_DATA_API: 'focus' + EVENT_KEY + DATA_API_KEY + ' ' + ('blur' + EVENT_KEY + DATA_API_KEY)
+ };
- /**
- * ------------------------------------------------------------------------
- * Class Definition
- * ------------------------------------------------------------------------
- */
+ /**
+ * ------------------------------------------------------------------------
+ * Class Definition
+ * ------------------------------------------------------------------------
+ */
- };
var Button = function () {
function Button(element) {
_classCallCheck(this, Button);
@@ -154,7 +154,7 @@ var Button = function ($) {
}).on(Event.FOCUS_BLUR_DATA_API, Selector.DATA_TOGGLE_CARROT, function (event) {
var button = $(event.target).closest(Selector.BUTTON)[0];
$(button).toggleClass(ClassName.FOCUS, /^focus(in)?$/.test(event.type));
- }
+ });
/**
* ------------------------------------------------------------------------
@@ -162,7 +162,7 @@ var Button = function ($) {
* ------------------------------------------------------------------------
*/
- );$.fn[NAME] = Button._jQueryInterface;
+ $.fn[NAME] = Button._jQueryInterface;
$.fn[NAME].Constructor = Button;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;