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-02 20:40:27 +0300
committerMark Otto <markdotto@gmail.com>2017-07-02 20:40:27 +0300
commit93b2682880920c940145a2ba1f31978501132ec0 (patch)
tree36f80d9e1ab93b40b145a47d65fa0b8e6714c091 /js/dist/util.js
parent3b08beb37a5c65a5dd51f109b7b4695e89afe698 (diff)
npm build
Diffstat (limited to 'js/dist/util.js')
-rw-r--r--js/dist/util.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/dist/util.js b/js/dist/util.js
index 034895948f..58d5dd9e63 100644
--- a/js/dist/util.js
+++ b/js/dist/util.js
@@ -22,9 +22,10 @@ var Util = function ($) {
MozTransition: 'transitionend',
OTransition: 'oTransitionEnd otransitionend',
transition: 'transitionend'
+ };
- // shoutout AngusCroll (https://goo.gl/pxwQGp)
- };function toType(obj) {
+ // shoutout AngusCroll (https://goo.gl/pxwQGp)
+ function toType(obj) {
return {}.toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase();
}
@@ -38,8 +39,7 @@ var Util = function ($) {
delegateType: transition.end,
handle: function handle(event) {
if ($(event.target).is(this)) {
- return event.handleObj.handler.apply(this, arguments // eslint-disable-line prefer-rest-params
- );
+ return event.handleObj.handler.apply(this, arguments); // eslint-disable-line prefer-rest-params
}
return undefined;
}