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:
authorfat <fat@folders.local>2015-05-13 02:52:54 +0300
committerfat <fat@folders.local>2015-05-13 02:52:54 +0300
commitab1578465aee4a776412b48f16bfefca79381919 (patch)
tree0766caa82a67cd6328273aa5f2a826c579d44d32 /js/dist/tab.js
parenta58febf71a5eac2161ce2db08c7d723755ed1163 (diff)
grunt test-js, grunt dist-js now working
Diffstat (limited to 'js/dist/tab.js')
-rw-r--r--js/dist/tab.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/dist/tab.js b/js/dist/tab.js
index 8c71d01714..b5108deea6 100644
--- a/js/dist/tab.js
+++ b/js/dist/tab.js
@@ -143,7 +143,7 @@ var Tab = (function ($) {
var active = $(container).find(Selector.ACTIVE_CHILD)[0];
var isTransitioning = callback && Util.supportsTransitionEnd() && (active && $(active).hasClass(ClassName.FADE) || !!$(container).find(Selector.FADE_CHILD)[0]);
- var complete = this._transitionComplete.bind(this, element, active, isTransitioning, callback);
+ var complete = $.proxy(this._transitionComplete, this, element, active, isTransitioning, callback);
if (active && isTransitioning) {
$(active).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION);