summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--js/reader.js14
1 files changed, 6 insertions, 8 deletions
diff --git a/js/reader.js b/js/reader.js
index c7a2ede..ae96a26 100644
--- a/js/reader.js
+++ b/js/reader.js
@@ -15,14 +15,6 @@ function enable_swipes() {
$(document).ready(function() {
console.log('setting taps');
- $(window).on("click tap", function() {
- if (parent.$(".header").is(":visible")) {
- parent.show_ui(false);
- } else {
- parent.show_ui(true);
- }
- });
-
$(window).on("mouseup", function(evt) {
if (evt.button == 0) {
@@ -40,6 +32,12 @@ $(document).ready(function() {
} else if (evt.screenX <= margin_side) {
console.log("iframe: LEFT SIDE");
parent.prev_page();
+ } else {
+ if (parent.$(".header").is(":visible")) {
+ parent.show_ui(false);
+ } else {
+ parent.show_ui(true);
+ }
}
}
});