summaryrefslogtreecommitdiff
path: root/js/dict.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-02-22 12:18:59 +0300
committerAndrew Dolgov <[email protected]>2018-02-22 12:18:59 +0300
commitf41005d3759740b08f81877e868176fe6ffb28ca (patch)
tree421f275605d599720da03238742ec296c754abae /js/dict.js
parent256e97d1e9293fc29680e9860c4c7714042aba63 (diff)
exp: set iframe event handlers on ready
Diffstat (limited to 'js/dict.js')
-rw-r--r--js/dict.js19
1 files changed, 10 insertions, 9 deletions
diff --git a/js/dict.js b/js/dict.js
index 7b36d78..22bbf98 100644
--- a/js/dict.js
+++ b/js/dict.js
@@ -1,12 +1,13 @@
-$(window).on("mouseup touchend", function() {
- if (!navigator.onLine) return;
+$(document).ready(function() {
+ $(window).on("mouseup touchend", function() {
+ if (!navigator.onLine) return;
- var sel = getSelection().toString().trim();
+ var sel = getSelection().toString().trim();
- if (sel.match(/^\w+$/)) {
- parent.dict_lookup(sel, function() {
- getSelection().removeAllRanges();
- });
- }
+ if (sel.match(/^\w+$/)) {
+ parent.dict_lookup(sel, function() {
+ getSelection().removeAllRanges();
+ });
+ }
+ });
});
-