Skip to content

Commit 280d4ae

Browse files
committed
rebuild
1 parent 24b5e6c commit 280d4ae

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

docs/assets/js/bootstrap-tab.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
if ( $this.parent('li').hasClass('active') ) return
5151

52-
previous = $ul.find('.active a').last()[0]
52+
previous = $ul.find('.active:last a')[0]
5353

5454
e = $.Event('show', {
5555
relatedTarget: previous

docs/assets/js/bootstrap-tooltip.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
inside = /in/.test(placement)
120120

121121
$tip
122-
.remove()
122+
.detach()
123123
.css({ top: 0, left: 0, display: 'block' })
124124
.insertAfter(this.$element)
125125

@@ -166,18 +166,18 @@
166166

167167
function removeWithAnimation() {
168168
var timeout = setTimeout(function () {
169-
$tip.off($.support.transition.end).remove()
169+
$tip.off($.support.transition.end).detach()
170170
}, 500)
171171

172172
$tip.one($.support.transition.end, function () {
173173
clearTimeout(timeout)
174-
$tip.remove()
174+
$tip.detach()
175175
})
176176
}
177177

178178
$.support.transition && this.$tip.hasClass('fade') ?
179179
removeWithAnimation() :
180-
$tip.remove()
180+
$tip.detach()
181181

182182
return this
183183
}

docs/assets/js/bootstrap.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@
10791079
inside = /in/.test(placement)
10801080

10811081
$tip
1082-
.remove()
1082+
.detach()
10831083
.css({ top: 0, left: 0, display: 'block' })
10841084
.insertAfter(this.$element)
10851085

@@ -1126,18 +1126,18 @@
11261126

11271127
function removeWithAnimation() {
11281128
var timeout = setTimeout(function () {
1129-
$tip.off($.support.transition.end).remove()
1129+
$tip.off($.support.transition.end).detach()
11301130
}, 500)
11311131

11321132
$tip.one($.support.transition.end, function () {
11331133
clearTimeout(timeout)
1134-
$tip.remove()
1134+
$tip.detach()
11351135
})
11361136
}
11371137

11381138
$.support.transition && this.$tip.hasClass('fade') ?
11391139
removeWithAnimation() :
1140-
$tip.remove()
1140+
$tip.detach()
11411141

11421142
return this
11431143
}
@@ -1536,7 +1536,7 @@
15361536

15371537
if ( $this.parent('li').hasClass('active') ) return
15381538

1539-
previous = $ul.find('.active a').last()[0]
1539+
previous = $ul.find('.active:last a')[0]
15401540

15411541
e = $.Event('show', {
15421542
relatedTarget: previous

0 commit comments

Comments
 (0)