diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index b4c6cead0a0..2ccf38b025a 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -178,9 +178,7 @@ pref("app.update.badge", true); #else pref("app.update.badge", false); #endif -// Give the user x seconds to reboot before showing a badge on the hamburger -// button. default=4 days -pref("app.update.badgeWaitTime", 345600); +// app.update.badgeWaitTime is in branding section // If set to true, the Update Service will apply updates in the background // when it finishes downloading them. diff --git a/browser/branding/aurora/pref/firefox-branding.js b/browser/branding/aurora/pref/firefox-branding.js index 5722368d57a..1ccab194a2d 100644 --- a/browser/branding/aurora/pref/firefox-branding.js +++ b/browser/branding/aurora/pref/firefox-branding.js @@ -26,6 +26,10 @@ pref("app.update.url.details", "https://www.mozilla.org/firefox/aurora/"); // app.update.checkInstallTime is true. pref("app.update.checkInstallTime.days", 2); +// Give the user x seconds to reboot before showing a badge on the hamburger +// button. default=4 days +pref("app.update.badgeWaitTime", 345600); + // Number of usages of the web console or scratchpad. // If this is less than 5, then pasting code into the web console or scratchpad is disabled -pref("devtools.selfxss.count", 5); \ No newline at end of file +pref("devtools.selfxss.count", 5); diff --git a/browser/branding/nightly/pref/firefox-branding.js b/browser/branding/nightly/pref/firefox-branding.js index c51c4c70dd5..30745fcb516 100644 --- a/browser/branding/nightly/pref/firefox-branding.js +++ b/browser/branding/nightly/pref/firefox-branding.js @@ -24,6 +24,10 @@ pref("app.update.url.details", "https://nightly.mozilla.org"); // app.update.checkInstallTime is true. pref("app.update.checkInstallTime.days", 2); +// Give the user x seconds to reboot before showing a badge on the hamburger +// button. default=immediately +pref("app.update.badgeWaitTime", 0); + // Number of usages of the web console or scratchpad. // If this is less than 5, then pasting code into the web console or scratchpad is disabled -pref("devtools.selfxss.count", 5); \ No newline at end of file +pref("devtools.selfxss.count", 5); diff --git a/browser/branding/official/pref/firefox-branding.js b/browser/branding/official/pref/firefox-branding.js index c5758056e98..ef35d73bdf8 100644 --- a/browser/branding/official/pref/firefox-branding.js +++ b/browser/branding/official/pref/firefox-branding.js @@ -23,6 +23,10 @@ pref("app.update.url.details", "https://www.mozilla.org/%LOCALE%/firefox/notes") // app.update.checkInstallTime is true. pref("app.update.checkInstallTime.days", 63); +// Give the user x seconds to reboot before showing a badge on the hamburger +// button. default=immediately +pref("app.update.badgeWaitTime", 0); + // Number of usages of the web console or scratchpad. // If this is less than 5, then pasting code into the web console or scratchpad is disabled -pref("devtools.selfxss.count", 0); \ No newline at end of file +pref("devtools.selfxss.count", 0); diff --git a/browser/branding/unofficial/pref/firefox-branding.js b/browser/branding/unofficial/pref/firefox-branding.js index 27dae01f3bb..abbb7dc9571 100644 --- a/browser/branding/unofficial/pref/firefox-branding.js +++ b/browser/branding/unofficial/pref/firefox-branding.js @@ -23,6 +23,10 @@ pref("app.update.url.details", "https://nightly.mozilla.org"); // app.update.checkInstallTime is true. pref("app.update.checkInstallTime.days", 2); +// Give the user x seconds to reboot before showing a badge on the hamburger +// button. default=immediately +pref("app.update.badgeWaitTime", 0); + // Number of usages of the web console or scratchpad. // If this is less than 5, then pasting code into the web console or scratchpad is disabled -pref("devtools.selfxss.count", 0); \ No newline at end of file +pref("devtools.selfxss.count", 0);