Remove stray "~" in modal paddingRight value (#19932)

[skip validator]
This commit is contained in:
akai 2016-05-19 04:53:01 +08:00 committed by Chris Rebert
parent 4354e87484
commit 4d1b9d7ce7

View File

@ -400,7 +400,7 @@ const Modal = (($) => {
}
if (this._isBodyOverflowing && !isModalOverflowing) {
this._element.style.paddingRight = `${this._scrollbarWidth}px~`
this._element.style.paddingRight = `${this._scrollbarWidth}px`
}
}