summaryrefslogtreecommitdiff
path: root/js/dict.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-06-06 13:36:17 +0300
committerAndrew Dolgov <[email protected]>2017-06-06 13:36:17 +0300
commit36075d3f6a1c5785f8ffe959b2a86421f3673d24 (patch)
treec434522941ac208d686bb09549a66b270d76ab13 /js/dict.js
parent7e4ee45037eb013be2311cecc0af4dd8f3a2258b (diff)
popup dictionary window on touch events
Diffstat (limited to 'js/dict.js')
-rw-r--r--js/dict.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/js/dict.js b/js/dict.js
new file mode 100644
index 0000000..7b36d78
--- /dev/null
+++ b/js/dict.js
@@ -0,0 +1,12 @@
+$(window).on("mouseup touchend", function() {
+ if (!navigator.onLine) return;
+
+ var sel = getSelection().toString().trim();
+
+ if (sel.match(/^\w+$/)) {
+ parent.dict_lookup(sel, function() {
+ getSelection().removeAllRanges();
+ });
+ }
+});
+