manageCreditCards.mjs (564B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 import { ManageCreditCards } from "chrome://formautofill/content/manageDialog.mjs"; 6 7 new ManageCreditCards({ 8 records: document.getElementById("credit-cards"), 9 controlsContainer: document.getElementById("controls-container"), 10 remove: document.getElementById("remove"), 11 add: document.getElementById("add"), 12 edit: document.getElementById("edit"), 13 });