(element, config)
| 1934 | /*#__PURE__*/ |
| 1935 | function () { |
| 1936 | function Modal(element, config) { |
| 1937 | this._config = this._getConfig(config); |
| 1938 | this._element = element; |
| 1939 | this._dialog = $$$1(element).find(Selector.DIALOG)[0]; |
| 1940 | this._backdrop = null; |
| 1941 | this._isShown = false; |
| 1942 | this._isBodyOverflowing = false; |
| 1943 | this._ignoreBackdropClick = false; |
| 1944 | this._originalBodyPadding = 0; |
| 1945 | this._scrollbarWidth = 0; |
| 1946 | } // Getters |
| 1947 | |
| 1948 | |
| 1949 | var _proto = Modal.prototype; |