Browse Source

Small refactoring of the loadingBar hiding code

Jonas Jenwald 11 years ago
parent
commit
cfeb4c1019
  1. 2
      web/ui_utils.js
  2. 4
      web/viewer.html
  3. 2
      web/viewer.js

2
web/ui_utils.js

@ -329,7 +329,7 @@ var ProgressBar = (function ProgressBarClosure() {
hide: function ProgressBar_hide() { hide: function ProgressBar_hide() {
this.bar.classList.add('hidden'); this.bar.classList.add('hidden');
this.bar.removeAttribute('style'); document.body.classList.remove('loadingInProgress');
} }
}; };

4
web/viewer.html

@ -96,8 +96,8 @@ http://sourceforge.net/adobe/cmap/wiki/License/
</head> </head>
<body tabindex="1"> <body tabindex="1" class="loadingInProgress">
<div id="outerContainer" class="loadingInProgress"> <div id="outerContainer">
<div id="sidebarContainer"> <div id="sidebarContainer">
<div id="toolbarSidebar"> <div id="toolbarSidebar">

2
web/viewer.js

@ -873,8 +873,6 @@ var PDFViewerApplication = {
var downloadedPromise = pdfDocument.getDownloadInfo().then(function() { var downloadedPromise = pdfDocument.getDownloadInfo().then(function() {
self.downloadComplete = true; self.downloadComplete = true;
self.loadingBar.hide(); self.loadingBar.hide();
var outerContainer = document.getElementById('outerContainer');
outerContainer.classList.remove('loadingInProgress');
}); });
var pagesCount = pdfDocument.numPages; var pagesCount = pdfDocument.numPages;

Loading…
Cancel
Save