Skip to content

Commit

Permalink
fix lint error (trailing space)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksercs committed May 1, 2024
1 parent 7e5a620 commit 8faffdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/emitter.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import logger from './logger';
const debug = logger('quill:events');
const EVENTS = ['selectionchange', 'mousedown', 'mouseup', 'click'];
if (hasWindow()) {
EVENTS.forEach((eventName) => {
EVENTS.forEach((eventName) => {
document.addEventListener(eventName, (...args) => {
const event = args[0];
const shadowRoot = event?.target?.shadowRoot;
Expand Down

0 comments on commit 8faffdd

Please sign in to comment.