cleaned whitespace

This commit is contained in:
Collin Anderson 2015-02-02 10:12:52 -05:00
parent 76a24d8a5b
commit 54e984c763
89 changed files with 56 additions and 126 deletions

View file

@ -26,7 +26,7 @@ PDFJS.getDocument(url).then(function(pdf) {
// For testing only.
var MAX_NUM_PAGES = 50;
var ii = Math.min(MAX_NUM_PAGES, numPages);
var promise = Promise.resolve();
for (var i = 1; i <= ii; i++) {
var anchor = document.createElement('a');
@ -56,4 +56,3 @@ PDFJS.getDocument(url).then(function(pdf) {
}.bind(null, i, anchor));
}
});