1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-25 17:48:07 +02:00

Fix errors reported by the keyword-spacing ESLint rule

http://eslint.org/docs/rules/keyword-spacing
This commit is contained in:
Jonas Jenwald 2016-12-12 20:18:48 +01:00
parent 86ba634c97
commit c36468cbce
7 changed files with 8 additions and 8 deletions

View file

@ -568,7 +568,7 @@ var ChunkedStreamManager = (function ChunkedStreamManagerClosure() {
if (this.pdfNetworkStream) {
this.pdfNetworkStream.cancelAllRequests('abort');
}
for(var requestId in this.promisesByRequest) {
for (var requestId in this.promisesByRequest) {
var capability = this.promisesByRequest[requestId];
capability.reject(new Error('Request was aborted'));
}