mirror of
https://github.com/nasa/openmct.git
synced 2025-06-18 07:08:12 +00:00
Add new timelist view and plugin (#4766)
* Add new timelist view and plugin * Add inspector properties * calculate list bounds to show/hide events * Add timer to track 'Now' for timelist * Styling for Timelist view Co-authored-by: Charles Hacskaylo <charlesh88@gmail.com> Co-authored-by: Nikhil <nikhil.k.mandlik@nasa.gov> Co-authored-by: Jamie V <jamie.j.vigliotta@nasa.gov>
This commit is contained in:
@ -76,7 +76,8 @@ define([
|
||||
'./timer/plugin',
|
||||
'./userIndicator/plugin',
|
||||
'../../example/exampleUser/plugin',
|
||||
'./localStorage/plugin'
|
||||
'./localStorage/plugin',
|
||||
'./timelist/plugin'
|
||||
], function (
|
||||
_,
|
||||
UTCTimeSystem,
|
||||
@ -133,7 +134,8 @@ define([
|
||||
Timer,
|
||||
UserIndicator,
|
||||
ExampleUser,
|
||||
LocalStorage
|
||||
LocalStorage,
|
||||
TimeList
|
||||
) {
|
||||
const plugins = {};
|
||||
|
||||
@ -210,6 +212,7 @@ define([
|
||||
plugins.DeviceClassifier = DeviceClassifier.default;
|
||||
plugins.UserIndicator = UserIndicator.default;
|
||||
plugins.LocalStorage = LocalStorage.default;
|
||||
plugins.Timelist = TimeList.default;
|
||||
|
||||
return plugins;
|
||||
});
|
||||
|
Reference in New Issue
Block a user