aboutsummaryrefslogtreecommitdiff
path: root/ext/js/display/display-resizer.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/js/display/display-resizer.js')
-rw-r--r--ext/js/display/display-resizer.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/js/display/display-resizer.js b/ext/js/display/display-resizer.js
index 7e346c7d..48117155 100644
--- a/ext/js/display/display-resizer.js
+++ b/ext/js/display/display-resizer.js
@@ -87,7 +87,7 @@ export class DisplayResizer {
} else {
if (this._startSize === null) { return; }
const {clientX: x, clientY: y} = e;
- this._updateFrameSize(x, y);
+ void this._updateFrameSize(x, y);
}
}
@@ -115,7 +115,7 @@ export class DisplayResizer {
const primaryTouch = this._getTouch(e.changedTouches, this._touchIdentifier);
if (primaryTouch === null) { return; }
const {clientX: x, clientY: y} = primaryTouch;
- this._updateFrameSize(x, y);
+ void this._updateFrameSize(x, y);
}
/**
@@ -138,7 +138,7 @@ export class DisplayResizer {
documentElement.dataset.isResizing = 'true';
}
- this._initializeFrameResize(token);
+ void this._initializeFrameResize(token);
}
/**
@@ -163,7 +163,7 @@ export class DisplayResizer {
documentElement.dataset.isResizing = 'true';
}
- this._initializeFrameResize(token);
+ void this._initializeFrameResize(token);
}
/**