From 3604f4a33dd8bc8fb9145f979d8eedc7eeb516ba Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Wed, 19 Dec 2012 15:19:25 -0800 Subject: [PATCH] Bug 695127 - missing ; in chrome://browser/content/preferences/sync.js. r=trivial --- browser/components/preferences/in-content/sync.js | 6 +++--- browser/components/preferences/sync.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/browser/components/preferences/in-content/sync.js b/browser/components/preferences/in-content/sync.js index 53cd1e6a4e58..97934288340e 100644 --- a/browser/components/preferences/in-content/sync.js +++ b/browser/components/preferences/in-content/sync.js @@ -117,7 +117,7 @@ let gSyncPane = { * "reset" -- reset sync */ openSetup: function (wizardType) { - var win = Services.wm.getMostRecentWindow("Weave:AccountSetup"); + let win = Services.wm.getMostRecentWindow("Weave:AccountSetup"); if (win) win.focus(); else { @@ -150,6 +150,6 @@ let gSyncPane = { resetSync: function () { this.openSetup("reset"); - } -} + }, +}; diff --git a/browser/components/preferences/sync.js b/browser/components/preferences/sync.js index c998fcaae67f..dec33c6422b7 100644 --- a/browser/components/preferences/sync.js +++ b/browser/components/preferences/sync.js @@ -118,7 +118,7 @@ let gSyncPane = { * "reset" -- reset sync */ openSetup: function (wizardType) { - var win = Services.wm.getMostRecentWindow("Weave:AccountSetup"); + let win = Services.wm.getMostRecentWindow("Weave:AccountSetup"); if (win) win.focus(); else { @@ -151,6 +151,6 @@ let gSyncPane = { resetSync: function () { this.openSetup("reset"); - } -} + }, +};