diff options
author | Allan Wang <me@allanwang.ca> | 2017-07-07 03:26:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-07 03:26:55 -0400 |
commit | 6adfc496374eb88919f70a240eb15a726d2c18e0 (patch) | |
tree | 7cba34515bde7d840d37c50c397e948407776cc9 /app/src/main/assets/js/context_a.js | |
parent | bb70ed737d98abbd6164b66ac5bd667553b312bd (diff) | |
download | frost-6adfc496374eb88919f70a240eb15a726d2c18e0.tar.gz frost-6adfc496374eb88919f70a240eb15a726d2c18e0.tar.bz2 frost-6adfc496374eb88919f70a240eb15a726d2c18e0.zip |
Dev 1.1.6 (#33) - Fix play store listing, add sharing options, update css & jsv1.1.6
* Remove play store listing updates
* Fix up listing
* Combine url getters for overlay activity
* Begin building context menu programmatically
* Update css and js
Diffstat (limited to 'app/src/main/assets/js/context_a.js')
-rw-r--r-- | app/src/main/assets/js/context_a.js | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app/src/main/assets/js/context_a.js b/app/src/main/assets/js/context_a.js new file mode 100644 index 00000000..5e09ffcd --- /dev/null +++ b/app/src/main/assets/js/context_a.js @@ -0,0 +1,31 @@ +//context menu for links +//largely mimics click_a.js +if (!window.hasOwnProperty('frost_context_a')) { + console.log('frost_context_a frost_click_a'); + window.frost_context_a = true; + + var _frostAContext = function(e) { + + + /* + * Commonality; check for valid target + */ + 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('Context Intercept', url); + Frost.contextMenu(url); + e.stopPropagation(); + e.preventDefault(); + } + } + + document.addEventListener('contextmenu', _frostAContext, true); +} |