aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/assets/js/click_a.js
blob: aabcd7e3895575afe14667dc05ee8f3562da8ad6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// we will handle click events
if (!window.hasOwnProperty('frost_click_a')) {
  console.log('Registering frost_click_a');
  window.frost_click_a = true;

  var _frostAClick = function(e) {
    var 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' && element.getAttribute('href') !== '#') {
      var url = element.getAttribute('href');
      if (url.includes('photoset_token')) return;
      console.log('Click Intercept', url);
      Frost.loadUrl(url);
      e.stopPropagation();
      e.preventDefault();
    }
  }

  document.addEventListener('click', _frostAClick, true);
}