configure filestore usage via customize/application_config.js

pull/1/head
ansuz 2017-01-03 12:10:11 +01:00
parent 4b1f9fd4f1
commit 5cd714b18a
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ define([
// When set to true, USE_FS_STORE becomes the default store, but the localStorage store is
// still loaded for migration purpose. When false, the localStorage is used.
var USE_FS_STORE = true;
var USE_FS_STORE = AppConfig.USE_FS_STORE;
var storeToUse = USE_FS_STORE ? FS : Store;