1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-12-07 09:18:06 +00:00

WIP: Add support for dependencies between startup modules

See StartupMechanism for details.
This commit is contained in:
Jermolene
2014-05-03 16:32:18 +01:00
parent 2f32621024
commit b96aade28a
5 changed files with 93 additions and 4 deletions

View File

@@ -12,6 +12,10 @@ Runs Google Analytics with the account number in the tiddler `$:/GoogleAnalytics
/*global $tw: false */
"use strict";
// Export name and synchronous status
exports.name = "google-analytics";
exports.synchronous = true;
var GOOGLE_ANALYTICS_ACCOUNT = "$:/GoogleAnalyticsAccount",
GOOGLE_ANALYTICS_DOMAIN = "$:/GoogleAnalyticsDomain";