| 21547 | _bodyScrollDisabledCount++; |
| 21548 | } |
| 21549 | function enableBodyScroll() { |
| 21550 | if (_bodyScrollDisabledCount > 0) { |
| 21551 | var doc = (0, _getDocument.getDocument)(); |
| 21552 | if (doc && doc.body && _bodyScrollDisabledCount === 1) { |
| 21553 | doc.body.classList.remove(DisabledScrollClassName); |
| 21554 | doc.body.removeEventListener("touchmove", _disableIosBodyScroll); |
| 21555 | } |
| 21556 | _bodyScrollDisabledCount--; |
| 21557 | } |
| 21558 | } |
| 21559 | function getScrollbarWidth() { |
| 21560 | if (_scrollbarWidth === undefined) { |
| 21561 | var scrollDiv = document.createElement("div"); |