Use var in place of let
This makes uglifyjs happier
This commit is contained in:
parent
8d807b73c6
commit
9b67d60197
1 changed files with 2 additions and 2 deletions
|
@ -347,11 +347,11 @@ Components.utils.import("resource://gre/modules/Services.jsm");
|
|||
|
||||
// Revert to profile directory
|
||||
if (index == 1) {
|
||||
Zotero.chooseZoteroDirectory(false, true);
|
||||
Zotero.chooseZoteroDirectory(Zotero.isStandalone, true);
|
||||
}
|
||||
// Locate data directory
|
||||
else if (index == 2) {
|
||||
Zotero.chooseZoteroDirectory();
|
||||
Zotero.chooseZoteroDirectory(Zotero.isStandalone);
|
||||
}
|
||||
}
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue