summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-06-29 14:58:52 +0300
committerAndrew Dolgov <[email protected]>2018-06-29 14:58:52 +0300
commit888365e2e44845485af8ae50dc3163e919fc3a63 (patch)
treebe5b42344c9a24ff41e184394ec9a51e520e417f
parent2ec9a469649636c54977e9e1bfa04a493813b1a2 (diff)
add resized handler
-rw-r--r--js/read.js16
-rw-r--r--read.html18
2 files changed, 14 insertions, 20 deletions
diff --git a/js/read.js b/js/read.js
index 555d9a1..469ccf5 100644
--- a/js/read.js
+++ b/js/read.js
@@ -103,22 +103,6 @@ function hotkey_handler(e) {
$(document).ready(function() {
document.onkeydown = hotkey_handler;
- $(window).on("orientationchange", function(evt) {
- console.log("orientationchange");
-
- $(".loading").show();
- $(".loading_message").html("Opening chapter...");
-
- window.setTimeout(function() {
- open_lastread();
-
- window.setTimeout(function() {
- $(".loading").hide();
- }, 500);
-
- }, 1000);
- });
-
$(window).on("mouseup", function(evt) {
if (evt.button == 0) {
diff --git a/read.html b/read.html
index 9cc523f..50f660b 100644
--- a/read.html
+++ b/read.html
@@ -226,8 +226,7 @@
<div class="footer">
<div class="chapter" data-toggle="modal" data-target="#toc-modal"></div>
<div class="location">
- <span id="cur_page">?</span> / <span id="total_pages">?</span>
- (<span id="page_pct">?</span>)
+ <span id="page_pct">?</span>
</div>
</div>
@@ -817,6 +816,19 @@
rendition.on("keyup", hotkey_handler);
+ rendition.on('resized', function() {
+ console.log('resized');
+
+ $(".loading").show();
+ $(".loading_message").html("Opening chapter...");
+
+ window.setTimeout(function() {
+ open_lastread();
+
+ $(".loading").hide();
+ }, 250);
+ });
+
rendition.on('rendered', function(chapter) {
$(".chapter").html("");
@@ -868,8 +880,6 @@
var totalPages = 100;
var pct = book.locations.percentageFromCfi(currentCfi);
- $("#cur_page").html(currentPage);
- $("#total_pages").html(totalPages);
$("#page_pct").html(parseInt(pct*100) + '%');
if (_store_position && new Date().getTime()/1000 - _last_position_sync > 15) {