react-klasha
Version:
This is an reactJS library for implementing klasha payment gateway
25 lines (22 loc) • 700 B
JavaScript
import { readTask, writeTask } from '@stencil/core/internal/client';
import { c as componentOnReady } from './helpers.js';
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));
});
}
});
});
};
export { startStatusTap };