diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-11-12 21:31:48 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-11-12 21:31:48 -0500 |
commit | cc757e4e459a68bd21fa68312520ac40a5840448 (patch) | |
tree | aa4e3499f658a4b6f50176a42b7a5001f9586b37 /mailnews/base/prefs/content/removeAccount.js | |
parent | 73cdfdcf32a2bbd594e26281a0cd427c7c15fa86 (diff) | |
download | UXP-cc757e4e459a68bd21fa68312520ac40a5840448.tar UXP-cc757e4e459a68bd21fa68312520ac40a5840448.tar.gz UXP-cc757e4e459a68bd21fa68312520ac40a5840448.tar.lz UXP-cc757e4e459a68bd21fa68312520ac40a5840448.tar.xz UXP-cc757e4e459a68bd21fa68312520ac40a5840448.zip |
Issue #1258 - Part 10: Remove chat core bits
Diffstat (limited to 'mailnews/base/prefs/content/removeAccount.js')
-rw-r--r-- | mailnews/base/prefs/content/removeAccount.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/mailnews/base/prefs/content/removeAccount.js b/mailnews/base/prefs/content/removeAccount.js index 350a0a065..77bbe58d5 100644 --- a/mailnews/base/prefs/content/removeAccount.js +++ b/mailnews/base/prefs/content/removeAccount.js @@ -39,12 +39,6 @@ function onLoad(event) { document.getElementById("removeDataPossibility").collapsed = true; } - if (gServer.type == "im") { - let dataCheckbox = document.getElementById("removeData"); - dataCheckbox.label = dataCheckbox.getAttribute("labelChat"); - dataCheckbox.accessKey = dataCheckbox.getAttribute("accesskeyChat"); - } - enableRemove(); window.sizeToContent(); } @@ -80,8 +74,6 @@ function showInfo() { // TODO: bug 1238271, this should use showFor attributes if possible. if (gServer.type == "imap" || gServer.type == "nntp") { document.getElementById("serverAccount").collapsed = false; - } else if (gServer.type == "im") { - document.getElementById("chatAccount").collapsed = false; } else { document.getElementById("localAccount").collapsed = false; } |