UNPKG

react-klasha

Version:

This is an reactJS library for implementing klasha payment gateway

22 lines (21 loc) 654 B
import { readTask, writeTask } from '@stencil/core'; import { componentOnReady } from './helpers'; export const startStatusTap = () => { const win = window; win.addEventListener('statusTap', () => { readTask(() => { const width = win.innerWidth; const height = win.innerHeight; const el = document.elementFromPoint(width / 2, height / 2); if (!el) { return; } const contentEl = el.closest('ion-content'); if (contentEl) { new Promise(resolve => componentOnReady(contentEl, resolve)).then(() => { writeTask(() => contentEl.scrollToTop(300)); }); } }); }); };