aboutsummaryrefslogtreecommitdiff
path: root/docs/dist/js/bootstrap.js
diff options
context:
space:
mode:
authorHeinrich Fenkart <[email protected]>2014-09-09 00:12:33 +0200
committerHeinrich Fenkart <[email protected]>2014-09-09 00:12:33 +0200
commit9702579aeb3f0aeb677631782c2920d6cd804475 (patch)
tree2063b207bfd1f98e1ed18bc797412242001a7414 /docs/dist/js/bootstrap.js
parent859ddc11fb350f985c377474b7727010e7da57a9 (diff)
downloadbootstrap-9702579aeb3f0aeb677631782c2920d6cd804475.tar.xz
bootstrap-9702579aeb3f0aeb677631782c2920d6cd804475.zip
run `grunt`
Diffstat (limited to 'docs/dist/js/bootstrap.js')
-rw-r--r--docs/dist/js/bootstrap.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/dist/js/bootstrap.js b/docs/dist/js/bootstrap.js
index 0b51155a2..d9518ad5f 100644
--- a/docs/dist/js/bootstrap.js
+++ b/docs/dist/js/bootstrap.js
@@ -608,9 +608,9 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
var complete = function () {
this.transitioning = 0
this.$element
- .trigger('hidden.bs.collapse')
.removeClass('collapsing')
.addClass('collapse')
+ .trigger('hidden.bs.collapse')
}
if (!$.support.transition) return complete.call(this)
@@ -1413,11 +1413,11 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
var $tip = this.tip()
var e = $.Event('hide.bs.' + this.type)
- this.$element.removeAttr('aria-describedby')
-
function complete() {
if (that.hoverState != 'in') $tip.detach()
- that.$element.trigger('hidden.bs.' + that.type)
+ that.$element
+ .removeAttr('aria-describedby')
+ .trigger('hidden.bs.' + that.type)
}
this.$element.trigger(e)