1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-17 19:06:40 +02:00
This commit is contained in:
Mark Otto
2017-03-26 11:26:31 -07:00
parent e20d744bdf
commit 4ab06ca453
17 changed files with 282 additions and 229 deletions

10
js/dist/modal.js vendored
View File

@@ -209,6 +209,10 @@ var Modal = function ($) {
this._scrollbarWidth = null;
};
Modal.prototype.handleUpdate = function handleUpdate() {
this._adjustDialog();
};
// private
Modal.prototype._getConfig = function _getConfig(config) {
@@ -290,7 +294,7 @@ var Modal = function ($) {
if (this._isShown) {
$(window).on(Event.RESIZE, function (event) {
return _this6._handleUpdate(event);
return _this6.handleUpdate(event);
});
} else {
$(window).off(Event.RESIZE);
@@ -391,10 +395,6 @@ var Modal = function ($) {
// todo (fat): these should probably be refactored out of modal.js
// ----------------------------------------------------------------------
Modal.prototype._handleUpdate = function _handleUpdate() {
this._adjustDialog();
};
Modal.prototype._adjustDialog = function _adjustDialog() {
var isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight;