1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
"use strict";
(function () {
/*
* 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
*/
var _frostAClick, _frostPreventClick, clickTimeout, prevented;
prevented = false;
_frostAClick = function _frostAClick(e) {
/*
* Commonality; check for valid target
*/
var element, url;
element = e.target || e.srcElement;
if (element.tagName !== "A") {
element = element.parentNode;
}
// Notifications is two layers under
if (element.tagName !== "A") {
element = element.parentNode;
}
if (element.tagName === "A") {
if (!prevented) {
url = element.getAttribute("href");
console.log("Click Intercept " + url);
// if frost is injected, check if loading the url through an overlay works
if ((typeof Frost !== "undefined" && Frost !== null ? Frost.loadUrl(url) : void 0) === true) {
e.stopPropagation();
e.preventDefault();
}
} else {
console.log("Click Intercept Prevented");
}
}
};
_frostPreventClick = function _frostPreventClick() {
console.log("Click prevented");
prevented = true;
};
document.addEventListener("click", _frostAClick, true);
clickTimeout = void 0;
document.addEventListener("touchstart", function (e) {
clickTimeout = setTimeout(_frostPreventClick, 400);
}, true);
document.addEventListener("touchend", function (e) {
prevented = false;
clearTimeout(clickTimeout);
}, true);
}).call(undefined);
|