added ISOTimeFormat plugin and format

This commit is contained in:
Jamie Vigliotta
2020-07-28 11:23:56 -07:00
parent 9198effafe
commit 8b4f07c2e0
4 changed files with 34 additions and 63 deletions

View File

@ -24,6 +24,7 @@ define([
'lodash',
'./utcTimeSystem/plugin',
'./localTimeSystem/plugin',
'./ISOTimeFormat/plugin',
'../../example/generator/plugin',
'./autoflow/AutoflowTabularPlugin',
'./timeConductor/plugin',
@ -59,6 +60,7 @@ define([
_,
UTCTimeSystem,
LocalTimeSystem,
ISOTimeFormat,
GeneratorPlugin,
AutoflowPlugin,
TimeConductorPlugin,
@ -201,6 +203,7 @@ define([
plugins.URLTimeSettingsSynchronizer = URLTimeSettingsSynchronizer.default;
plugins.NotificationIndicator = NotificationIndicator.default;
plugins.NewFolderAction = NewFolderAction.default;
plugins.ISOTimeFormat = ISOTimeFormat.default;
return plugins;
});