diff options
author | Ascrod <32915892+Ascrod@users.noreply.github.com> | 2018-05-31 18:37:37 -0400 |
---|---|---|
committer | Ascrod <32915892+Ascrod@users.noreply.github.com> | 2018-05-31 18:37:37 -0400 |
commit | d1a4cabf485b4fb6e17411aefb6c6af761451992 (patch) | |
tree | 14aa76300d80f3ed6a4d978b8054f335e04131bf /browser/base/content/tab-content.js | |
parent | b109b14de63500ab07c478723d4851b345139bdd (diff) | |
download | UXP-d1a4cabf485b4fb6e17411aefb6c6af761451992.tar UXP-d1a4cabf485b4fb6e17411aefb6c6af761451992.tar.gz UXP-d1a4cabf485b4fb6e17411aefb6c6af761451992.tar.lz UXP-d1a4cabf485b4fb6e17411aefb6c6af761451992.tar.xz UXP-d1a4cabf485b4fb6e17411aefb6c6af761451992.zip |
Remove tracking protection tour.
Diffstat (limited to 'browser/base/content/tab-content.js')
-rw-r--r-- | browser/base/content/tab-content.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/browser/base/content/tab-content.js b/browser/base/content/tab-content.js index a57dc6607..11a9fabce 100644 --- a/browser/base/content/tab-content.js +++ b/browser/base/content/tab-content.js @@ -226,8 +226,6 @@ var AboutPrivateBrowsingListener = { false, true); chromeGlobal.addEventListener("AboutPrivateBrowsingToggleTrackingProtection", this, false, true); - chromeGlobal.addEventListener("AboutPrivateBrowsingDontShowIntroPanelAgain", this, - false, true); }, get isAboutPrivateBrowsing() { @@ -245,9 +243,6 @@ var AboutPrivateBrowsingListener = { case "AboutPrivateBrowsingToggleTrackingProtection": sendAsyncMessage("AboutPrivateBrowsing:ToggleTrackingProtection"); break; - case "AboutPrivateBrowsingDontShowIntroPanelAgain": - sendAsyncMessage("AboutPrivateBrowsing:DontShowIntroPanelAgain"); - break; } }, }; |