Skip to content

Commit e320936

Browse files
committed
chore: format using prettier
1 parent 4fb131d commit e320936

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

js/activity.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3713,10 +3713,10 @@ class Activity {
37133713
}, 100);
37143714
};
37153715
this.addEventListener(window, "resize", this._resizeListener);
3716-
3716+
37173717
this._orientationChangeListener = handleResize;
37183718
this.addEventListener(window, "orientationchange", this._orientationChangeListener);
3719-
3719+
37203720
const that = this;
37213721
this._resizeCanvasListener = () => {
37223722
try {
@@ -7574,22 +7574,22 @@ class Activity {
75747574
this.removeEventListener(window, "resize", this._resizeListener);
75757575
this._resizeListener = null;
75767576
}
7577-
7577+
75787578
if (this._orientationChangeListener) {
75797579
this.removeEventListener(window, "orientationchange", this._orientationChangeListener);
75807580
this._orientationChangeListener = null;
75817581
}
7582-
7582+
75837583
if (this._resizeCanvasListener) {
75847584
this.removeEventListener(window, "orientationchange", this._resizeCanvasListener);
75857585
this._resizeCanvasListener = null;
75867586
}
7587-
7587+
75887588
if (this._repositionBlocksListener) {
75897589
this.removeEventListener(window, "resize", this._repositionBlocksListener);
75907590
this._repositionBlocksListener = null;
75917591
}
7592-
7592+
75937593
while (this._listeners.length > 0) {
75947594
const { target, type, listener, options } = this._listeners.pop();
75957595
if (target && typeof target.removeEventListener === "function") {

0 commit comments

Comments
 (0)