1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-20 15:18:08 +02:00

Fix lint warnings.

And name anonymous functions.
This commit is contained in:
Kalervo Kujala 2011-09-27 21:43:48 +03:00
parent a968187833
commit de408dac70
4 changed files with 8 additions and 8 deletions

View file

@ -107,7 +107,7 @@ var PDFView = {
document.title = url;
getPdf({url:url, progress:PDFView.progressLevel}, function(data) {
getPdf({url: url, progress: PDFView.progressLevel}, function(data) {
document.getElementById('loading').style.display = 'none';
PDFView.load(data, scale);
});