forked from mirrors/gecko-dev
These simple lists are converted to normal layout by setting a fixed height that isn't a multiple of the row height, which is already the case for most other lists in the user interface. MozReview-Commit-ID: 1tV4MIoRp0d --HG-- rename : toolkit/themes/windows/global/richlistbox.css => toolkit/themes/linux/global/richlistbox.css extra : rebase_source : d6c53aa341bc5711f6ecf16485b5bd03d4f9caf2 extra : intermediate-source : 1355778929be17234ca3ced4f9930f05fb2cf20a extra : source : 2e4527da76bba52492353aa5a40c128b09f389f1
32 lines
928 B
JavaScript
32 lines
928 B
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 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("richlistitem");
|
|
let label = document.createElement("label");
|
|
label.setAttribute("value", host);
|
|
listItem.appendChild(label);
|
|
fragment.appendChild(listItem);
|
|
}
|
|
list.appendChild(fragment);
|
|
},
|
|
|
|
ondialogaccept() {
|
|
window.arguments[0].allowed = true;
|
|
},
|
|
|
|
ondialogcancel() {
|
|
window.arguments[0].allowed = false;
|
|
},
|
|
};
|