/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ "use strict"; import { tabsSetupFlowManager } from "./tabs-pickup.mjs"; window.addEventListener("load", () => { tabsSetupFlowManager.initialize( document.getElementById("tabs-pickup-container") ); document.getElementById("recently-closed-tabs-container").onLoad(); }); window.addEventListener("unload", () => { tabsSetupFlowManager?.uninit(); const tabPickupList = document.querySelector("tab-pickup-list"); if (tabPickupList) { tabPickupList.cleanup(); } document.getElementById("recently-closed-tabs-container").cleanup(); });