UNPKG

@zoff-tech/zt-bottom-drawer

Version:
43 lines (39 loc) 1.36 kB
'use strict'; const index = require('./index-d7fcb92f.js'); const index$1 = require('./index-129f1623.js'); const helpers = require('./helpers-ad4a8d0f.js'); /*! * (C) Ionic http://ionicframework.com - MIT License */ const startStatusTap = () => { const win = window; win.addEventListener('statusTap', () => { index.readTask(() => { const width = win.innerWidth; const height = win.innerHeight; const el = document.elementFromPoint(width / 2, height / 2); if (!el) { return; } const contentEl = index$1.findClosestIonContent(el); if (contentEl) { new Promise((resolve) => helpers.componentOnReady(contentEl, resolve)).then(() => { index.writeTask(async () => { /** * If scrolling and user taps status bar, * only calling scrollToTop is not enough * as engines like WebKit will jump the * scroll position back down and complete * any in-progress momentum scrolling. */ contentEl.style.setProperty('--overflow', 'hidden'); await index$1.scrollToTop(contentEl, 300); contentEl.style.removeProperty('--overflow'); }); }); } }); }); }; exports.startStatusTap = startStatusTap; //# sourceMappingURL=status-tap-7608084d.js.map