Merge pull request #5226 from Snuffleupagus/issue-5224

Fix Zoom box resizing when it's hidden when the viewer loads (issue 5224)
This commit is contained in:
Tim van der Meij 2014-09-05 19:06:39 +02:00
commit 8c76501a49

View File

@ -2155,9 +2155,12 @@ window.addEventListener('localized', function localized(evt) {
PDFView.animationStartedPromise.then(function() {
// Adjust the width of the zoom box to fit the content.
// Note: This is only done if the zoom box is actually visible,
// since otherwise element.clientWidth will return 0.
// Note: If the window is narrow enough that the zoom box is not visible,
// we temporarily show it to be able to adjust its width.
var container = document.getElementById('scaleSelectContainer');
if (container.clientWidth === 0) {
container.setAttribute('style', 'display: inherit;');
}
if (container.clientWidth > 0) {
var select = document.getElementById('scaleSelect');
select.setAttribute('style', 'min-width: inherit;');