aboutsummaryrefslogtreecommitdiff
path: root/app/src/web/assets/js/click_a.ts
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-05-01 16:05:19 -0700
committerAllan Wang <me@allanwang.ca>2019-05-01 16:05:19 -0700
commit58f4f9298b09081b3c937227828824849057a835 (patch)
tree18d2bf44637b52c9f68817253fc37d4ca699daef /app/src/web/assets/js/click_a.ts
parent576cc1a451a16f2d82ee1e41e83c420a85ded47e (diff)
parentda93672c2ed6b54e0e7119a6b55715185112df3e (diff)
downloadfrost-58f4f9298b09081b3c937227828824849057a835.tar.gz
frost-58f4f9298b09081b3c937227828824849057a835.tar.bz2
frost-58f4f9298b09081b3c937227828824849057a835.zip
Merge dev
Diffstat (limited to 'app/src/web/assets/js/click_a.ts')
-rw-r--r--app/src/web/assets/js/click_a.ts57
1 files changed, 0 insertions, 57 deletions
diff --git a/app/src/web/assets/js/click_a.ts b/app/src/web/assets/js/click_a.ts
deleted file mode 100644
index 5023610e..00000000
--- a/app/src/web/assets/js/click_a.ts
+++ /dev/null
@@ -1,57 +0,0 @@
-(function () {
- let prevented = false;
-
- const _frostAClick = (e: Event) => {
- // check for valid target
- const target = e.target || e.currentTarget || e.srcElement;
- if (!(target instanceof Element)) {
- console.log("No element found");
- return
- }
- let element: Element = target;
- // Notifications are two layers under
- for (let i = 0; i < 2; i++) {
- if (element.tagName !== 'A') {
- element = <Element>element.parentElement;
- }
- }
- if (element.tagName === 'A') {
- if (!prevented) {
- const url = element.getAttribute('href');
- if (!url || url === '#') {
- return
- }
- console.log(`Click intercept ${url}`);
- // If Frost is injected, check if loading the url through an overlay works
- if (Frost.loadUrl(url)) {
- e.stopPropagation();
- e.preventDefault();
- }
- } else {
- console.log("Click intercept prevented")
- }
- }
- };
-
- /*
- * On top of the click event, we must stop it for long presses
- * Since that will conflict with the context menu
- * Note that we only override it on conditions where the context menu
- * Will occur
- */
- const _frostPreventClick = () => {
- console.log("Click _frostPrevented");
- prevented = true;
- };
-
- document.addEventListener('click', _frostAClick, true);
- let clickTimeout: number | undefined = undefined;
- document.addEventListener('touchstart', () => {
- clickTimeout = setTimeout(_frostPreventClick, 400);
- }, true);
- document.addEventListener('touchend', () => {
- prevented = false;
- clearTimeout(clickTimeout)
- }, true);
-}).call(undefined);
-