mirror of
https://github.com/janeczku/calibre-web
synced 2024-12-26 01:50:31 +00:00
Restored click on progressbar
This commit is contained in:
parent
2fe03961bb
commit
03e2a1e73b
@ -105,6 +105,14 @@ kthoom.ImageFile = function(file) {
|
|||||||
this.data = file;
|
this.data = file;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
function initProgressClick() {
|
||||||
|
$("#progress").click(function(e) {
|
||||||
|
var page = Math.max(1, Math.ceil((e.offsetX / $(this).width()) * totalImages)) - 1;
|
||||||
|
currentImage = page;
|
||||||
|
updatePage();
|
||||||
|
});
|
||||||
|
};
|
||||||
function loadFromArrayBuffer(ab) {
|
function loadFromArrayBuffer(ab) {
|
||||||
var f = [];
|
var f = [];
|
||||||
|
|
||||||
@ -443,6 +451,7 @@ function init(fileid) {
|
|||||||
request.fileid = fileid.substring(0, fileid.length - 2);
|
request.fileid = fileid.substring(0, fileid.length - 2);
|
||||||
request.addEventListener("load", ImageLoadCallback);
|
request.addEventListener("load", ImageLoadCallback);
|
||||||
request.send();
|
request.send();
|
||||||
|
initProgressClick();
|
||||||
document.body.className += /AppleWebKit/.test(navigator.userAgent) ? " webkit" : "";
|
document.body.className += /AppleWebKit/.test(navigator.userAgent) ? " webkit" : "";
|
||||||
kthoom.loadSettings();
|
kthoom.loadSettings();
|
||||||
updateScale(true);
|
updateScale(true);
|
||||||
|
Loading…
Reference in New Issue
Block a user