Files
tubestation/browser/components/preferences/siteDataRemoveSelected.js
Johann Hofmann e4bf0c4bca Bug 1446368 - Remove the XUL tree from siteDataRemoveSelected. r=Paolo
MozReview-Commit-ID: 3mPP8fhxowE
2018-04-06 12:59:03 +02:00

36 lines
1.1 KiB
JavaScript

/* -*- indent-tabs-mode: nil; js-indent-level: 4 -*- */
/* 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";
let gSiteDataRemoveSelected = {
init() {
let bundlePreferences = document.getElementById("bundlePreferences");
let acceptBtn = document.getElementById("SiteDataRemoveSelectedDialog")
.getButton("accept");
acceptBtn.label = bundlePreferences.getString("acceptRemove");
let hosts = window.arguments[0].hosts;
hosts.sort();
let list = document.getElementById("removalList");
let fragment = document.createDocumentFragment();
for (let host of hosts) {
let listItem = document.createElement("listitem");
listItem.setAttribute("label", host);
fragment.appendChild(listItem);
}
list.appendChild(fragment);
},
ondialogaccept() {
window.arguments[0].allowed = true;
},
ondialogcancel() {
window.arguments[0].allowed = false;
},
};