Remove uses of window.event.

window.event is a deprecated global that's set to the currently
dispatched event.

- Opened and closed mentions box by clicking its icon in the top bar
- Left and right clicked on an inline channel name and saw context menu
  open both times
- Two-finger swiped on iOS and saw channel change
- Long-touched and dragged channel in network list on iOS and reordered
  the list successfully
This commit is contained in:
itsjohncs 2021-12-20 15:34:28 -08:00
parent e0bbf19d9d
commit 763047889d
5 changed files with 8 additions and 4 deletions

View File

@ -23,6 +23,10 @@ rules:
no-duplicate-imports: error
no-else-return: error
no-implicit-globals: error
no-restricted-globals:
- error
- event
- fdescribe
no-shadow: error
no-template-curly-in-string: error
no-unsafe-negation: error

View File

@ -227,7 +227,7 @@ export default {
network: this.network,
});
},
openMentions() {
openMentions(event) {
eventbus.emit("mentions:toggle", {
event: event,
});

View File

@ -19,7 +19,7 @@ export default {
channel: String,
},
methods: {
openContextMenu() {
openContextMenu(event) {
eventbus.emit("contextmenu:inline-channel", {
event: event,
channel: this.channel,

View File

@ -348,7 +348,7 @@ export default {
event.item.classList.remove("ui-sortable-dragging-touch-cue");
this.startDrag = null;
},
onDraggableTouchStart() {
onDraggableTouchStart(event) {
if (event.touches.length === 1) {
// This prevents an iOS long touch default behavior: selecting
// the nearest selectable text.

View File

@ -39,7 +39,7 @@ function listenForTwoFingerSwipes(onTwoFingerSwipe) {
document.body.addEventListener(
"touchend",
function () {
function (event) {
if (event.touches.length >= 2) {
return;
}