<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 12:2 Unexpected "constructor("
Line 13:4 Expected identifier but found "super("
Line 15:8 Expected ":"
Line 16:8 Expected ":"
Line 18:8 Expected ":"
Line 34:15 Expected identifier but found "define("

**/
class ContentTabs extends HTMLElement {
  constructor() {
    super();

    this.tabButtons = this.querySelectorAll(".tab-button");
    this.settingTabsContent = this.querySelectorAll(".tab-content");

    this.tabButtons.forEach((tabsButton, index) =&gt; {
      tabsButton.addEventListener("click", () =&gt; {
        this.tabButtons.forEach((tabButton) =&gt; {
          tabButton.classList.remove("button-active");
        });
        tabsButton.classList.add("button-active");
        let tabID = this.tabButtons[index].id;
        this.settingTabsContent.forEach((settingsContent) =&gt; {
          settingsContent.classList.remove("tab-active");
        });
        document.getElementById(tabID + "-content").classList.add("tab-active");
      });
    });
  }
}

customElements.define("content-tabs", ContentTabs);</pre></body></html>