working new folder action

This commit is contained in:
Deep Tailor
2020-06-23 14:39:19 -07:00
parent 31ac67b393
commit 51c9328dfd
4 changed files with 116 additions and 2 deletions

View File

@ -53,7 +53,8 @@ define([
'./themes/maelstrom',
'./themes/snow',
'./URLTimeSettingsSynchronizer/plugin',
'./notificationIndicator/plugin'
'./notificationIndicator/plugin',
'./newFolderAction/plugin'
], function (
_,
UTCTimeSystem,
@ -87,7 +88,8 @@ define([
Maelstrom,
Snow,
URLTimeSettingsSynchronizer,
NotificationIndicator
NotificationIndicator,
NewFolderAction
) {
var bundleMap = {
LocalStorage: 'platform/persistence/local',
@ -198,6 +200,7 @@ define([
plugins.ConditionWidget = ConditionWidgetPlugin.default;
plugins.URLTimeSettingsSynchronizer = URLTimeSettingsSynchronizer.default;
plugins.NotificationIndicator = NotificationIndicator.default;
plugins.NewFolderAction = NewFolderAction.default;
return plugins;
});