Skip to content

Commit

Permalink
Cleanup WebUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrews54757 committed Nov 22, 2023
1 parent 90d556d commit 9a6df1c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions chrome/player/utils/WebUtils.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -214,17 +214,13 @@ export class WebUtils {
if (e.key === 'Enter') {
span.blur();
e.stopPropagation();
e.preventDefault();
}
e.preventDefault();
});

span.addEventListener('click', (e) => {
e.stopPropagation();
});

span.addEventListener('keydown', (e) => {
e.stopPropagation();
});
}
return container;
}
Expand Down

0 comments on commit 9a6df1c

Please sign in to comment.