diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-06-26 15:15:09 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-06-26 15:15:09 -0400 |
commit | bde02587cd2733f0e423c46989e6574fd2cf0d35 (patch) | |
tree | 0d210e60b4eef024067f32e461eb8bbf442726e2 /toolkit/mozapps/extensions/content/list.js | |
parent | 51279224505ac236d3e4307de1407f889e15c7b0 (diff) | |
download | UXP-bde02587cd2733f0e423c46989e6574fd2cf0d35.tar UXP-bde02587cd2733f0e423c46989e6574fd2cf0d35.tar.gz UXP-bde02587cd2733f0e423c46989e6574fd2cf0d35.tar.lz UXP-bde02587cd2733f0e423c46989e6574fd2cf0d35.tar.xz UXP-bde02587cd2733f0e423c46989e6574fd2cf0d35.zip |
[AllAM] De-duplicate blocklist.js, list.js, newaddon.js, and xpinstallConfirm.js
Diffstat (limited to 'toolkit/mozapps/extensions/content/list.js')
-rw-r--r-- | toolkit/mozapps/extensions/content/list.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/toolkit/mozapps/extensions/content/list.js b/toolkit/mozapps/extensions/content/list.js index aac87911e..a31922703 100644 --- a/toolkit/mozapps/extensions/content/list.js +++ b/toolkit/mozapps/extensions/content/list.js @@ -16,11 +16,11 @@ const kDialog = "dialog"; * caller can inspect the user action after the dialog closes by inspecting the * value of the |result| parameter on this object which is set to the dlgtype * of the button used to close the dialog. - * + * * window.arguments[0] is an array of strings to display in the tree. If the * array is empty the tree will not be displayed. * window.arguments[1] a JS Object with the following properties: - * + * * title: A title string, to be displayed in the title bar of the dialog. * message1: A message string, displayed above the addon list * message2: A message string, displayed below the addon list @@ -39,7 +39,7 @@ const kDialog = "dialog"; * ... * }, * - * result: The dlgtype of button that was used to dismiss the dialog. + * result: The dlgtype of button that was used to dismiss the dialog. */ "use strict"; @@ -113,7 +113,7 @@ function init() { message.appendChild(document.createTextNode(params[messageEntry])); } } - + document.getElementById("infoIcon").className = params["iconClass"] ? "spaced " + params["iconClass"] : "spaced alert-icon"; |