mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
Avoid bad scrollbar replacement into width values
This commit is contained in:
parent
a22e2900f9
commit
3e7566f2c3
@ -443,7 +443,7 @@ class Modal {
|
|||||||
|
|
||||||
_checkScrollbar() {
|
_checkScrollbar() {
|
||||||
const rect = document.body.getBoundingClientRect()
|
const rect = document.body.getBoundingClientRect()
|
||||||
this._isBodyOverflowing = rect.left + rect.right < window.innerWidth
|
this._isBodyOverflowing = Math.round(rect.left + rect.right) < window.innerWidth
|
||||||
this._scrollbarWidth = this._getScrollbarWidth()
|
this._scrollbarWidth = this._getScrollbarWidth()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user