summaryrefslogtreecommitdiff
path: root/basilisk/components/preferences/in-content/privacy.js
diff options
context:
space:
mode:
Diffstat (limited to 'basilisk/components/preferences/in-content/privacy.js')
-rw-r--r--basilisk/components/preferences/in-content/privacy.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/basilisk/components/preferences/in-content/privacy.js b/basilisk/components/preferences/in-content/privacy.js
index a976fb4..0774ecc 100644
--- a/basilisk/components/preferences/in-content/privacy.js
+++ b/basilisk/components/preferences/in-content/privacy.js
@@ -232,7 +232,7 @@ var gPrivacyPane = {
/**
* Initialize the history mode menulist based on the privacy preferences
*/
- initializeHistoryMode: function PPP_initializeHistoryMode()
+ initializeHistoryMode: function()
{
let mode;
let getVal = aPref => document.getElementById(aPref).value;
@@ -252,7 +252,7 @@ var gPrivacyPane = {
/**
* Update the selected pane based on the history mode menulist
*/
- updateHistoryModePane: function PPP_updateHistoryModePane()
+ updateHistoryModePane: function()
{
let selectedIndex = -1;
switch (document.getElementById("historyMode").value) {
@@ -273,7 +273,7 @@ var gPrivacyPane = {
* Update the private browsing auto-start pref and the history mode
* micro-management prefs based on the history mode menulist
*/
- updateHistoryModePrefs: function PPP_updateHistoryModePrefs()
+ updateHistoryModePrefs: function()
{
let pref = document.getElementById("browser.privatebrowsing.autostart");
switch (document.getElementById("historyMode").value) {
@@ -308,7 +308,7 @@ var gPrivacyPane = {
* Update the privacy micro-management controls based on the
* value of the private browsing auto-start checkbox.
*/
- updatePrivacyMicroControls: function PPP_updatePrivacyMicroControls()
+ updatePrivacyMicroControls: function()
{
if (document.getElementById("historyMode").value == "custom") {
let disabled = this._autoStartPrivateBrowsing =
@@ -360,7 +360,7 @@ var gPrivacyPane = {
/**
* Initialize the starting state for the auto-start private browsing mode pref reverter.
*/
- initAutoStartPrivateBrowsingReverter: function PPP_initAutoStartPrivateBrowsingReverter()
+ initAutoStartPrivateBrowsingReverter: function()
{
let mode = document.getElementById("historyMode");
let autoStart = document.getElementById("privateBrowsingAutoStart");
@@ -370,7 +370,7 @@ var gPrivacyPane = {
_lastMode: null,
_lastCheckState: null,
- updateAutostart: function PPP_updateAutostart() {
+ updateAutostart: function() {
let mode = document.getElementById("historyMode");
let autoStart = document.getElementById("privateBrowsingAutoStart");
let pref = document.getElementById("browser.privatebrowsing.autostart");