Bug 695127 - missing ; in chrome://browser/content/preferences/sync.js. r=trivial

This commit is contained in:
Richard Newman 2012-12-19 15:19:25 -08:00
parent 90daf700c2
commit 3604f4a33d
2 changed files with 6 additions and 6 deletions

View File

@ -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");
}
}
},
};

View File

@ -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");
}
}
},
};