Compare commits

...

1 Commits

Author SHA1 Message Date
Andrew Henry
3470a9744a Added LocalTimeSystem to standard plugins object. 2019-05-15 14:23:27 -07:00

View File

@@ -23,6 +23,7 @@
define([ define([
'lodash', 'lodash',
'./utcTimeSystem/plugin', './utcTimeSystem/plugin',
'./localTimeSystem/plugin',
'../../example/generator/plugin', '../../example/generator/plugin',
'./autoflow/AutoflowTabularPlugin', './autoflow/AutoflowTabularPlugin',
'./timeConductor/plugin', './timeConductor/plugin',
@@ -46,6 +47,7 @@ define([
], function ( ], function (
_, _,
UTCTimeSystem, UTCTimeSystem,
LocalTimeSystem,
GeneratorPlugin, GeneratorPlugin,
AutoflowPlugin, AutoflowPlugin,
TimeConductorPlugin, TimeConductorPlugin,
@@ -81,6 +83,7 @@ define([
}); });
plugins.UTCTimeSystem = UTCTimeSystem; plugins.UTCTimeSystem = UTCTimeSystem;
plugins.LocalTimeSystem = LocalTimeSystem;
plugins.ImportExport = ImportExport; plugins.ImportExport = ImportExport;