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:
authorJohann <johann.servoire@gmail.com>2017-03-24 00:22:09 +0300
committerGitHub <noreply@github.com>2017-03-24 00:22:09 +0300
commit3f247a42f2a113f9e04184987eae9019abcac778 (patch)
treee8dc2d8ff73cac05233bacb179a138e948b33100 /js/src/modal.js
parent37f438910fc50ca0b7b9959357fd302b4daf6930 (diff)
Fix Modal documentation about _handleUpdate method + move to public scope (#21877)
Fix Modal documentation about _handleUpdate method + move to public scope
Diffstat (limited to 'js/src/modal.js')
-rw-r--r--js/src/modal.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/js/src/modal.js b/js/src/modal.js
index 9263efd536..7f010b8e09 100644
--- a/js/src/modal.js
+++ b/js/src/modal.js
@@ -215,6 +215,9 @@ const Modal = (($) => {
this._scrollbarWidth = null
}
+ handleUpdate() {
+ this._adjustDialog()
+ }
// private
@@ -296,7 +299,7 @@ const Modal = (($) => {
_setResizeEvent() {
if (this._isShown) {
- $(window).on(Event.RESIZE, (event) => this._handleUpdate(event))
+ $(window).on(Event.RESIZE, (event) => this.handleUpdate(event))
} else {
$(window).off(Event.RESIZE)
}
@@ -401,10 +404,6 @@ const Modal = (($) => {
// todo (fat): these should probably be refactored out of modal.js
// ----------------------------------------------------------------------
- _handleUpdate() {
- this._adjustDialog()
- }
-
_adjustDialog() {
const isModalOverflowing =
this._element.scrollHeight > document.documentElement.clientHeight