diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-16 20:04:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-17 01:04:56 +0000 |
commit | b249627434d3a94420ac4d98c3ce720767e57b43 (patch) | |
tree | ec46e2c020c5a63a5c2babf56376f53e288ed7f2 /ext/js/dom/document-util.js | |
parent | decbc60f7734e739c0e5c41da294f65f9eec92fe (diff) |
Update eslint spacing rules (#366)
* Add space-infix-ops rule
* Add no-multi-spaces
---------
Co-authored-by: Darius Jahandarie <djahandarie@gmail.com>
Diffstat (limited to 'ext/js/dom/document-util.js')
-rw-r--r-- | ext/js/dom/document-util.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/dom/document-util.js b/ext/js/dom/document-util.js index 0153e74a..fe10d670 100644 --- a/ext/js/dom/document-util.js +++ b/ext/js/dom/document-util.js @@ -349,7 +349,7 @@ export class DocumentUtil { * @param {EventListener} onFullscreenChanged The event callback. * @param {?import('../core.js').EventListenerCollection} eventListenerCollection An optional `EventListenerCollection` to add the registration to. */ - static addFullscreenChangeEventListener(onFullscreenChanged, eventListenerCollection=null) { + static addFullscreenChangeEventListener(onFullscreenChanged, eventListenerCollection = null) { const target = document; const options = false; const fullscreenEventNames = [ |