mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-08 17:30:09 +02:00
Adjust the brace-style
ESLint rule to disallow single lines (and also enable no-iterator
)
See http://eslint.org/docs/rules/brace-style. Having the opening/closing braces on the same line can often make the code slightly more difficult to read, in particular for `if`/`else if` statements, compared to using new lines. This patch also, for consistency with `mozilla-central`, enables the [`no-iterator`](http://eslint.org/docs/rules/no-iterator) rule. Note that this rule didn't require a single code change.
This commit is contained in:
parent
92e5fb099e
commit
bc736fdc7d
18 changed files with 129 additions and 46 deletions
|
@ -1092,8 +1092,12 @@ describe('api', function() {
|
|||
var xhr = new XMLHttpRequest(pdfPath);
|
||||
xhr.open('GET', pdfPath);
|
||||
xhr.responseType = 'arraybuffer';
|
||||
xhr.onload = function () { resolve(new Uint8Array(xhr.response)); };
|
||||
xhr.onerror = function () { reject(new Error('PDF is not loaded')); };
|
||||
xhr.onload = function () {
|
||||
resolve(new Uint8Array(xhr.response));
|
||||
};
|
||||
xhr.onerror = function () {
|
||||
reject(new Error('PDF is not loaded'));
|
||||
};
|
||||
xhr.send();
|
||||
});
|
||||
return loadPromise;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue