summaryrefslogtreecommitdiff
path: root/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
parent256e97d1e9293fc29680e9860c4c7714042aba63 (diff)
exp: set iframe event handlers on ready
Diffstat (limited to 'js')
-rw-r--r--js/dict.js19
-rw-r--r--js/reader.js18
2 files changed, 20 insertions, 17 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();
+ });
+ }
+ });
});
-
diff --git a/js/reader.js b/js/reader.js
index 93a3755..453c925 100644
--- a/js/reader.js
+++ b/js/reader.js
@@ -1,10 +1,12 @@
-$(window).on("click tap", function() {
- if (parent.$(".header").is(":visible")) {
- parent.show_ui(false);
- parent.request_fullscreen();
- } else {
- parent.show_ui(true);
- parent.disable_fullscreen();
- }
+$(document).ready(function() {
+ $(window).on("click tap", function() {
+ if (parent.$(".header").is(":visible")) {
+ parent.show_ui(false);
+ parent.request_fullscreen();
+ } else {
+ parent.show_ui(true);
+ parent.disable_fullscreen();
+ }
+ });
});