UNPKG

@ionic/core

Version:
19 lines (18 loc) 627 B
export function startStatusTap(win, queue) { win.addEventListener('statusTap', () => { queue.read(() => { const width = win.innerWidth; const height = win.innerHeight; const el = win.document.elementFromPoint(width / 2, height / 2); if (!el) { return; } const contentEl = el.closest('ion-content'); if (contentEl) { contentEl.componentOnReady().then(() => { queue.write(() => contentEl.scrollToTop(300)); }); } }); }); }