1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-23 13:53:15 +00:00

Browser-storage: Fix startup constraints

The use of $tw.perf requires the "startup" startup module to be executed first.
This commit is contained in:
jeremy@jermolene.com 2020-08-11 12:32:39 +01:00
parent 89c0c6157b
commit 7e964e9501

View File

@ -15,7 +15,7 @@ Startup initialisation
// Export name and synchronous status
exports.name = "browser-storage";
exports.platforms = ["browser"];
exports.after = ["load-modules"];
exports.after = ["startup"];
exports.synchronous = true;
var ENABLED_TITLE = "$:/config/BrowserStorage/Enabled",