aboutsummaryrefslogtreecommitdiff
path: root/dist/js/bootstrap.js
diff options
context:
space:
mode:
authorBootstrap's Grunt bot <[email protected]>2015-02-26 06:01:15 +0000
committerBootstrap's Grunt bot <[email protected]>2015-02-26 06:01:15 +0000
commit033dbfd06c9c5bb8dccdb96ec201a30fd14b178a (patch)
tree1ea2df4d7bf48240be1105a870a530c3da6508f2 /dist/js/bootstrap.js
parentacc5f6575698b8cbaf18892842301c10303c4502 (diff)
downloadbootstrap-033dbfd06c9c5bb8dccdb96ec201a30fd14b178a.tar.xz
bootstrap-033dbfd06c9c5bb8dccdb96ec201a30fd14b178a.zip
automatic grunt dist
Diffstat (limited to 'dist/js/bootstrap.js')
-rw-r--r--dist/js/bootstrap.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/js/bootstrap.js b/dist/js/bootstrap.js
index 018505215..c5c2ecce3 100644
--- a/dist/js/bootstrap.js
+++ b/dist/js/bootstrap.js
@@ -1524,7 +1524,7 @@ if (typeof jQuery === 'undefined') {
Tooltip.prototype.hide = function (callback) {
var that = this
- var $tip = this.tip()
+ var $tip = $(this.$tip)
var e = $.Event('hide.bs.' + this.type)
function complete() {
@@ -1541,7 +1541,7 @@ if (typeof jQuery === 'undefined') {
$tip.removeClass('in')
- $.support.transition && this.$tip.hasClass('fade') ?
+ $.support.transition && $tip.hasClass('fade') ?
$tip
.one('bsTransitionEnd', complete)
.emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :