Skip to content

Commit

Permalink
Run grunt.
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
XhmikosR committed Jun 28, 2016
1 parent f95dbea commit 9c464cf
Show file tree
Hide file tree
Showing 10 changed files with 47 additions and 41 deletions.
2 changes: 1 addition & 1 deletion dist/css/bootstrap.css.map

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions dist/js/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -1573,9 +1573,11 @@ if (typeof jQuery === 'undefined') {

function complete() {
if (that.hoverState != 'in') $tip.detach()
that.$element
.removeAttr('aria-describedby')
.trigger('hidden.bs.' + that.type)
if (that.$element) { // TODO: Check whether guarding this code with this `if` is really necessary.
that.$element
.removeAttr('aria-describedby')
.trigger('hidden.bs.' + that.type)
}
callback && callback()
}

Expand Down Expand Up @@ -1734,6 +1736,7 @@ if (typeof jQuery === 'undefined') {
that.$tip = null
that.$arrow = null
that.$viewport = null
that.$element = null
})
}

Expand Down
4 changes: 2 additions & 2 deletions dist/js/bootstrap.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/css/docs.min.css.map

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions docs/assets/js/customize.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/assets/js/docs.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/assets/js/raw-files.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/dist/css/bootstrap.css.map

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions docs/dist/js/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -1573,9 +1573,11 @@ if (typeof jQuery === 'undefined') {

function complete() {
if (that.hoverState != 'in') $tip.detach()
that.$element
.removeAttr('aria-describedby')
.trigger('hidden.bs.' + that.type)
if (that.$element) { // TODO: Check whether guarding this code with this `if` is really necessary.
that.$element
.removeAttr('aria-describedby')
.trigger('hidden.bs.' + that.type)
}
callback && callback()
}

Expand Down Expand Up @@ -1734,6 +1736,7 @@ if (typeof jQuery === 'undefined') {
that.$tip = null
that.$arrow = null
that.$viewport = null
that.$element = null
})
}

Expand Down
4 changes: 2 additions & 2 deletions docs/dist/js/bootstrap.min.js

Large diffs are not rendered by default.

0 comments on commit 9c464cf

Please sign in to comment.