aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/TrackMovements.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-06-13 09:00:49 -0400
committerbobzel <zzzman@gmail.com>2025-06-13 09:00:49 -0400
commit2d6307f6eaa0803aefabae9e9232506611365b66 (patch)
tree7d77764b51a8dcfef4ed5554be6028fea815a4ae /src/client/util/TrackMovements.ts
parentb91057d00512446339e48fb8488a97a1e5ef03d5 (diff)
updated css and project to HTML5 standards. fixed border rounding for images.
Diffstat (limited to 'src/client/util/TrackMovements.ts')
-rw-r--r--src/client/util/TrackMovements.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/util/TrackMovements.ts b/src/client/util/TrackMovements.ts
index 7da0281c0..74a3be83d 100644
--- a/src/client/util/TrackMovements.ts
+++ b/src/client/util/TrackMovements.ts
@@ -98,7 +98,6 @@ export class TrackMovements {
// new tab was added - need to add it
if (tabbedFFViews.size > this.recordingFFViews.size) {
- // eslint-disable-next-line no-restricted-syntax
for (const DashDoc of tabbedDocs) {
if (!this.recordingFFViews.has(DashDoc)) {
if (isFFView(DashDoc)) {
@@ -112,7 +111,6 @@ export class TrackMovements {
}
// tab was removed - need to remove it from recordingFFViews
else if (tabbedFFViews.size < this.recordingFFViews.size) {
- // eslint-disable-next-line no-restricted-syntax
for (const [doc] of this.recordingFFViews) {
if (!tabbedFFViews.has(doc)) {
this.removeRecordingFFView(doc);