Use var in place of let

This makes uglifyjs happier
This commit is contained in:
Simon Kornblith 2014-05-04 19:04:48 -04:00
parent 8d807b73c6
commit 9b67d60197

View File

@ -347,11 +347,11 @@ Components.utils.import("resource://gre/modules/Services.jsm");
// Revert to profile directory // Revert to profile directory
if (index == 1) { if (index == 1) {
Zotero.chooseZoteroDirectory(false, true); Zotero.chooseZoteroDirectory(Zotero.isStandalone, true);
} }
// Locate data directory // Locate data directory
else if (index == 2) { else if (index == 2) {
Zotero.chooseZoteroDirectory(); Zotero.chooseZoteroDirectory(Zotero.isStandalone);
} }
} }
return; return;