mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-13 18:27:35 +00:00
Bug 695127 - missing ; in chrome://browser/content/preferences/sync.js. r=trivial
This commit is contained in:
parent
90daf700c2
commit
3604f4a33d
@ -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");
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -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");
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user