1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Fix loadingBar hiding when disableAutoFetch is enabled (issue 3590)

This commit is contained in:
Jonas Jenwald 2014-08-17 01:06:03 +02:00
parent cfeb4c1019
commit ecbb39f983
2 changed files with 33 additions and 0 deletions

View file

@ -275,6 +275,7 @@ var ProgressBar = (function ProgressBarClosure() {
}
function ProgressBar(id, opts) {
this.visible = true;
// Fetch the sub-elements for later.
this.div = document.querySelector(id + ' .progress');
@ -328,8 +329,21 @@ var ProgressBar = (function ProgressBarClosure() {
},
hide: function ProgressBar_hide() {
if (!this.visible) {
return;
}
this.visible = false;
this.bar.classList.add('hidden');
document.body.classList.remove('loadingInProgress');
},
show: function ProgressBar_show() {
if (this.visible) {
return;
}
this.visible = true;
document.body.classList.add('loadingInProgress');
this.bar.classList.remove('hidden');
}
};