1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Fix lint error

This commit is contained in:
Julian Viereck 2012-01-03 22:48:32 +01:00
parent 2f563dbd2b
commit 9157597175

View file

@ -1086,7 +1086,7 @@ window.addEventListener('scalechange', function scalechange(evt) {
return;
}
var predefinedValueFound = selectScaleOption('' + evt.scale);
var predefinedValueFound = selectScaleOption('' + evt.scale);
if (!predefinedValueFound) {
customScaleOption.textContent = Math.round(evt.scale * 10000) / 100 + '%';
customScaleOption.selected = true;