content/static: run prettier on table.js

Change-Id: I1e5e7b72280e621b57778968488b06e170613f29
Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/283953
Trust: Jamal Carvalho <jamal@golang.org>
Run-TryBot: Jamal Carvalho <jamal@golang.org>
Reviewed-by: Julie Qiu <julie@golang.org>
diff --git a/content/static/js/table.js b/content/static/js/table.js
index 60f4f13..14a934a 100644
--- a/content/static/js/table.js
+++ b/content/static/js/table.js
@@ -5,64 +5,65 @@
  * license that can be found in the LICENSE file.
  */
 export class ExpandableRowsTableController {
-    constructor(table, expandAll) {
-        this.table = table;
-        this.expandAll = expandAll;
-        this.toggles = table.querySelectorAll('[data-aria-controls]');
-        this.setAttributes();
-        this.attachEventListeners();
+  constructor(table, expandAll) {
+    this.table = table;
+    this.expandAll = expandAll;
+    this.toggles = table.querySelectorAll('[data-aria-controls]');
+    this.setAttributes();
+    this.attachEventListeners();
+    this.updateVisibleItems();
+  }
+  setAttributes() {
+    for (const a of ['data-aria-controls', 'data-aria-labelledby', 'data-id']) {
+      this.table.querySelectorAll(`[${a}]`).forEach(t => {
+        t.setAttribute(a.replace('data-', ''), t.getAttribute(a) ?? '');
+        t.removeAttribute(a);
+      });
+    }
+  }
+  attachEventListeners() {
+    this.toggles.forEach(t => {
+      t.addEventListener('click', e => {
+        this.handleToggleClick(e);
         this.updateVisibleItems();
+      });
+    });
+    this.expandAll?.addEventListener('click', () => {
+      this.handleExpandAllClick();
+      this.updateVisibleItems();
+    });
+  }
+  handleToggleClick(e) {
+    let target = e.currentTarget;
+    if (!target?.hasAttribute('aria-expanded')) {
+      target = this.table.querySelector(
+        `button[aria-controls="${target?.getAttribute('aria-controls')}"]`
+      );
     }
-    setAttributes() {
-        for (const a of ['data-aria-controls', 'data-aria-labelledby', 'data-id']) {
-            this.table.querySelectorAll(`[${a}]`).forEach(t => {
-                t.setAttribute(a.replace('data-', ''), t.getAttribute(a) ?? '');
-                t.removeAttribute(a);
-            });
+    const isExpanded = target?.getAttribute('aria-expanded') === 'true';
+    target?.setAttribute('aria-expanded', isExpanded ? 'false' : 'true');
+    e.stopPropagation();
+  }
+  handleExpandAllClick() {
+    this.table
+      .querySelectorAll('[aria-expanded=false]')
+      .forEach(t => t.setAttribute('aria-expanded', 'true'));
+  }
+  updateVisibleItems() {
+    this.toggles.forEach(t => {
+      const isExpanded = t?.getAttribute('aria-expanded') === 'true';
+      const rowIds = t?.getAttribute('aria-controls')?.trimEnd().split(' ');
+      rowIds?.forEach(id => {
+        const target = document.getElementById(`${id}`);
+        if (isExpanded) {
+          target?.classList.add('visible');
+          target?.classList.remove('hidden');
+        } else {
+          target?.classList.add('hidden');
+          target?.classList.remove('visible');
         }
-    }
-    attachEventListeners() {
-        this.toggles.forEach(t => {
-            t.addEventListener('click', e => {
-                this.handleToggleClick(e);
-                this.updateVisibleItems();
-            });
-        });
-        this.expandAll?.addEventListener('click', () => {
-            this.handleExpandAllClick();
-            this.updateVisibleItems();
-        });
-    }
-    handleToggleClick(e) {
-        let target = e.currentTarget;
-        if (!target?.hasAttribute('aria-expanded')) {
-            target = this.table.querySelector(`button[aria-controls="${target?.getAttribute('aria-controls')}"]`);
-        }
-        const isExpanded = target?.getAttribute('aria-expanded') === 'true';
-        target?.setAttribute('aria-expanded', isExpanded ? 'false' : 'true');
-        e.stopPropagation();
-    }
-    handleExpandAllClick() {
-        this.table
-            .querySelectorAll('[aria-expanded=false]')
-            .forEach(t => t.setAttribute('aria-expanded', 'true'));
-    }
-    updateVisibleItems() {
-        this.toggles.forEach(t => {
-            const isExpanded = t?.getAttribute('aria-expanded') === 'true';
-            const rowIds = t?.getAttribute('aria-controls')?.trimEnd().split(' ');
-            rowIds?.forEach(id => {
-                const target = document.getElementById(`${id}`);
-                if (isExpanded) {
-                    target?.classList.add('visible');
-                    target?.classList.remove('hidden');
-                }
-                else {
-                    target?.classList.add('hidden');
-                    target?.classList.remove('visible');
-                }
-            });
-        });
-    }
+      });
+    });
+  }
 }
-//# sourceMappingURL=table.js.map
\ No newline at end of file
+//# sourceMappingURL=table.js.map