Bug 1417527 - Fix indentation to be consistent with standards. r=jaws draft
authorOliver <oliveralonzof@gmail.com>
Wed, 22 Nov 2017 12:51:21 -0600
changeset 702087 765d09a54486ae464e6b6bb03947bf6f66dc26a1
parent 700732 e795e4168200324285895162190a3bda05433c55
child 741368 6df307917beef80eac498283f8b7b3559ac1f67a
push id90380
push userbmo:oliveralonzof@gmail.com
push dateWed, 22 Nov 2017 18:51:39 +0000
reviewersjaws
bugs1417527
milestone59.0a1
Bug 1417527 - Fix indentation to be consistent with standards. r=jaws MozReview-Commit-ID: 5pEpVmZR4bK
browser/components/preferences/in-content/containers.js
browser/components/preferences/in-content/privacy.js
--- a/browser/components/preferences/in-content/containers.js
+++ b/browser/components/preferences/in-content/containers.js
@@ -14,17 +14,17 @@ const defaultContainerColor = "blue";
 
 let gContainersPane = {
 
   init() {
     this._list = document.getElementById("containersView");
 
     document.getElementById("backContainersLink").addEventListener("click", function(event) {
       if (event.button == 0) {
-          gotoPref("general");
+        gotoPref("general");
       }
     });
 
     this._rebuildView();
   },
 
   _rebuildView() {
     const containers = ContextualIdentityService.getPublicIdentities();
--- a/browser/components/preferences/in-content/privacy.js
+++ b/browser/components/preferences/in-content/privacy.js
@@ -111,36 +111,36 @@ var gPrivacyPane = {
     setEventListener("historyMode", "command", function() {
       gPrivacyPane.updateHistoryModePane();
       gPrivacyPane.updateHistoryModePrefs();
       gPrivacyPane.updatePrivacyMicroControls();
       gPrivacyPane.updateAutostart();
     });
     setEventListener("historyRememberClear", "click", function(event) {
       if (event.button == 0) {
-          gPrivacyPane.clearPrivateDataNow(false);
-          return false;
+        gPrivacyPane.clearPrivateDataNow(false);
+        return false;
       }
     });
     setEventListener("historyRememberCookies", "click", function(event) {
       if (event.button == 0) {
-          gPrivacyPane.showCookies();
-          return false;
+        gPrivacyPane.showCookies();
+        return false;
       }
     });
     setEventListener("historyDontRememberClear", "click", function(event) {
       if (event.button == 0) {
-          gPrivacyPane.clearPrivateDataNow(true);
-          return false;
+        gPrivacyPane.clearPrivateDataNow(true);
+        return false;
       }
     });
     setEventListener("openSearchEnginePreferences", "click", function(event) {
       if (event.button == 0) {
-          gotoPref('search');
-          return false;
+        gotoPref('search');
+        return false;
       }
     });
     setEventListener("privateBrowsingAutoStart", "command",
       gPrivacyPane.updateAutostart);
     setEventListener("cookieExceptions", "command",
       gPrivacyPane.showCookieExceptions);
     setEventListener("showCookiesButton", "command",
       gPrivacyPane.showCookies);