From de0bb1e0522d14bcdef70746da277992f992f83c Mon Sep 17 00:00:00 2001 From: Shohei Yoshida Date: Mon, 21 Jan 2019 06:28:16 +0900 Subject: Scrollable modal (#27769) --- js/src/modal.js | 9 +++- js/tests/unit/modal.js | 27 ++++++++++ scss/_modal.scss | 50 +++++++++++++++++-- site/docs/4.2/components/modal.md | 102 +++++++++++++++++++++++++++++++++++++- 4 files changed, 182 insertions(+), 6 deletions(-) diff --git a/js/src/modal.js b/js/src/modal.js index 125182e136..f658201306 100644 --- a/js/src/modal.js +++ b/js/src/modal.js @@ -51,6 +51,7 @@ const Event = { } const ClassName = { + SCROLLABLE : 'modal-dialog-scrollable', SCROLLBAR_MEASURER : 'modal-scrollbar-measure', BACKDROP : 'modal-backdrop', OPEN : 'modal-open', @@ -60,6 +61,7 @@ const ClassName = { const Selector = { DIALOG : '.modal-dialog', + MODAL_BODY : '.modal-body', DATA_TOGGLE : '[data-toggle="modal"]', DATA_DISMISS : '[data-dismiss="modal"]', FIXED_CONTENT : '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top', @@ -244,7 +246,12 @@ class Modal { this._element.style.display = 'block' this._element.removeAttribute('aria-hidden') this._element.setAttribute('aria-modal', true) - this._element.scrollTop = 0 + + if ($(this._dialog).hasClass(ClassName.SCROLLABLE)) { + this._dialog.querySelector(Selector.MODAL_BODY).scrollTop = 0 + } else { + this._element.scrollTop = 0 + } if (transition) { Util.reflow(this._element) diff --git a/js/tests/unit/modal.js b/js/tests/unit/modal.js index 4d7682aaa7..1762904803 100644 --- a/js/tests/unit/modal.js +++ b/js/tests/unit/modal.js @@ -790,4 +790,31 @@ $(function () { }) .bootstrapModal('show') }) + + QUnit.test('should scroll to top of the modal body if the modal has .modal-dialog-scrollable class', function (assert) { + assert.expect(2) + var done = assert.async() + + var $modal = $([ + ' {% endhighlight %} +You can also create a scrollable modal that allows scroll the modal body by adding `.modal-dialog-scrollable` to `.modal-dialog`. + + + +
+ +
+ +{% highlight html %} + + + + + +{% endhighlight %} + ### Vertically centered Add `.modal-dialog-centered` to `.modal-dialog` to vertically center the modal. @@ -234,9 +307,36 @@ Add `.modal-dialog-centered` to `.modal-dialog` to vertically center the modal. + +
+
-- cgit v1.2.3