diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-04-22 13:08:18 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-04-22 19:47:37 +0200 |
commit | 7ab45761af606c813f77c228f260807e46ccc16a (patch) | |
tree | cad9e4196ef575e9f7860021f2f502486ef7afde | |
parent | c30ebdac27c93b57e368c69e9c13055a17229992 (diff) | |
download | UXP-7ab45761af606c813f77c228f260807e46ccc16a.tar UXP-7ab45761af606c813f77c228f260807e46ccc16a.tar.gz UXP-7ab45761af606c813f77c228f260807e46ccc16a.tar.lz UXP-7ab45761af606c813f77c228f260807e46ccc16a.tar.xz UXP-7ab45761af606c813f77c228f260807e46ccc16a.zip |
Remove NPAPI deprecation statement from about:plugins.
-rw-r--r-- | dom/locales/en-US/chrome/plugins.properties | 3 | ||||
-rw-r--r-- | toolkit/content/plugins.html | 9 |
2 files changed, 0 insertions, 12 deletions
diff --git a/dom/locales/en-US/chrome/plugins.properties b/dom/locales/en-US/chrome/plugins.properties index ee8d25c88..fe03be59e 100644 --- a/dom/locales/en-US/chrome/plugins.properties +++ b/dom/locales/en-US/chrome/plugins.properties @@ -21,9 +21,6 @@ description_label=Description suffixes_label=Suffixes learn_more_label=Learn More -deprecation_description=Missing something? Some plugins are no longer supported. -deprecation_learn_more=Learn More. - # GMP Plugins gmp_license_info=License information gmp_privacy_info=Privacy Information diff --git a/toolkit/content/plugins.html b/toolkit/content/plugins.html index d389f52dd..15bbed9bb 100644 --- a/toolkit/content/plugins.html +++ b/toolkit/content/plugins.html @@ -75,15 +75,6 @@ enabledplugins.appendChild(document.createTextNode(pluginsbundle.GetStringFromName(label))); fragment.appendChild(enabledplugins); - var deprecation = document.createElement("p"); - deprecation.setAttribute("class", "notice"); - deprecation.textContent = pluginsbundle.GetStringFromName("deprecation_description") + " \u00A0 "; - var deprecationLink = document.createElement("a"); - deprecationLink.textContent = pluginsbundle.GetStringFromName("deprecation_learn_more"); - deprecationLink.href = Services.urlFormatter.formatURLPref("app.support.baseURL") + "npapi"; - deprecation.appendChild(deprecationLink); - fragment.appendChild(deprecation); - var stateNames = {}; ["STATE_SOFTBLOCKED", "STATE_BLOCKED", |