mirror of
https://github.com/JonathanHerrewijnen/calibre-web.git
synced 2024-11-11 05:33:57 +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;
|
||||
};
|
||||
|
||||
|
||||
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) {
|
||||
var f = [];
|
||||
|
||||
@ -443,6 +451,7 @@ function init(fileid) {
|
||||
request.fileid = fileid.substring(0, fileid.length - 2);
|
||||
request.addEventListener("load", ImageLoadCallback);
|
||||
request.send();
|
||||
initProgressClick();
|
||||
document.body.className += /AppleWebKit/.test(navigator.userAgent) ? " webkit" : "";
|
||||
kthoom.loadSettings();
|
||||
updateScale(true);
|
||||
|
Loading…
Reference in New Issue
Block a user