commit 6a58d3b2ffc81020568db7c8994bbe64f90f1a8d parent b6c04a1653b1da64137e306063efebd971d33d5b Author: Simon Kornblith <simon@simonster.com> Date: Sun, 4 May 2014 19:07:14 -0400 Revert "Use var in place of let" This reverts commit 9b67d60197a448d09c074fd2bf16b1089b30adc8. (I totally bungled this commit) Diffstat:
| M | chrome/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(Zotero.isStandalone, true); + Zotero.chooseZoteroDirectory(false, true); } // Locate data directory else if (index == 2) { - Zotero.chooseZoteroDirectory(Zotero.isStandalone); + Zotero.chooseZoteroDirectory(); } } return;