Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakai <akainice@gmail.com>2016-05-18 23:53:01 +0300
committerChris Rebert <github@chrisrebert.com>2016-05-18 23:53:01 +0300
commit4d1b9d7ce7adcb3a16b81cb3561d5294f50d3c3a (patch)
tree73587f61ca8142fc5ebe8ac9201a1cfd9a6716de /js/src/modal.js
parent4354e874840393418e13409e1c534c1b5bf55809 (diff)
Remove stray "~" in modal paddingRight value (#19932)
[skip validator]
Diffstat (limited to 'js/src/modal.js')
-rw-r--r--js/src/modal.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/modal.js b/js/src/modal.js
index 695ac569b8..f52af09a2a 100644
--- a/js/src/modal.js
+++ b/js/src/modal.js
@@ -400,7 +400,7 @@ const Modal = (($) => {
}
if (this._isBodyOverflowing && !isModalOverflowing) {
- this._element.style.paddingRight = `${this._scrollbarWidth}px~`
+ this._element.style.paddingRight = `${this._scrollbarWidth}px`
}
}