Folder views refactor (#2171)

Folder views rewritten in Vue.js
This commit is contained in:
Deep Tailor
2018-09-26 15:34:44 -07:00
committed by Andrew Henry
parent c5187d8509
commit 944505a5f1
14 changed files with 748 additions and 107 deletions

View File

@@ -34,7 +34,8 @@ define([
'./plot/plugin',
'./telemetryTable/plugin',
'./staticRootPlugin/plugin',
'./notebook/plugin'
'./notebook/plugin',
'./folderView/plugin'
], function (
_,
UTCTimeSystem,
@@ -49,7 +50,8 @@ define([
PlotPlugin,
TelemetryTablePlugin,
StaticRootPlugin,
Notebook
Notebook,
FolderView
) {
var bundleMap = {
LocalStorage: 'platform/persistence/local',
@@ -159,6 +161,7 @@ define([
plugins.TelemetryMean = TelemetryMean;
plugins.URLIndicator = URLIndicatorPlugin;
plugins.Notebook = Notebook;
plugins.FolderView = FolderView;
return plugins;
});