mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-04 04:37:29 +02:00
fixes #4781
This commit is contained in:
5
docs/assets/js/bootstrap.js
vendored
5
docs/assets/js/bootstrap.js
vendored
@@ -835,7 +835,6 @@
|
|||||||
transition ?
|
transition ?
|
||||||
that.$element.one($.support.transition.end, function () { that.$element.focus().trigger('shown.bs.modal') }) :
|
that.$element.one($.support.transition.end, function () { that.$element.focus().trigger('shown.bs.modal') }) :
|
||||||
that.$element.focus().trigger('shown.bs.modal')
|
that.$element.focus().trigger('shown.bs.modal')
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -864,7 +863,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
Modal.prototype.enforceFocus = function () {
|
Modal.prototype.enforceFocus = function () {
|
||||||
$(document).on('focusin.bs.modal', function (e) {
|
$(document)
|
||||||
|
.off('focusin.bs.modal') // guard against infinite focus loop
|
||||||
|
.on('focusin.bs.modal', function (e) {
|
||||||
if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
|
if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
|
||||||
this.$element.focus()
|
this.$element.focus()
|
||||||
}
|
}
|
||||||
|
2
docs/assets/js/bootstrap.min.js
vendored
2
docs/assets/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -76,7 +76,6 @@
|
|||||||
transition ?
|
transition ?
|
||||||
that.$element.one($.support.transition.end, function () { that.$element.focus().trigger('shown.bs.modal') }) :
|
that.$element.one($.support.transition.end, function () { that.$element.focus().trigger('shown.bs.modal') }) :
|
||||||
that.$element.focus().trigger('shown.bs.modal')
|
that.$element.focus().trigger('shown.bs.modal')
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -105,7 +104,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
Modal.prototype.enforceFocus = function () {
|
Modal.prototype.enforceFocus = function () {
|
||||||
$(document).on('focusin.bs.modal', function (e) {
|
$(document)
|
||||||
|
.off('focusin.bs.modal') // guard against infinite focus loop
|
||||||
|
.on('focusin.bs.modal', function (e) {
|
||||||
if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
|
if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
|
||||||
this.$element.focus()
|
this.$element.focus()
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user