www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 9b67d60197a448d09c074fd2bf16b1089b30adc8
parent 8d807b73c6f163f82c5aa5b7a5917c5977d5d404
Author: Simon Kornblith <simon@simonster.com>
Date:   Sun,  4 May 2014 19:04:48 -0400

Use var in place of let

This makes uglifyjs happier

Diffstat:
Mchrome/content/zotero/xpcom/zotero.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js @@ -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;