Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html17
1 files changed, 11 insertions, 6 deletions
diff --git a/index.html b/index.html
index 78e5fbf5c..d8ec226c4 100644
--- a/index.html
+++ b/index.html
@@ -1,5 +1,5 @@
<!--
- Open MCT, Copyright (c) 2014-2021, United States Government
+ Open MCT, Copyright (c) 2014-2022, United States Government
as represented by the Administrator of the National Aeronautics and Space
Administration. All rights reserved.
@@ -75,13 +75,15 @@
const TWO_HOURS = ONE_HOUR * 2;
const ONE_DAY = ONE_HOUR * 24;
-
openmct.install(openmct.plugins.LocalStorage());
+ openmct.install(openmct.plugins.example.Generator());
+ openmct.install(openmct.plugins.example.EventGeneratorPlugin());
+ openmct.install(openmct.plugins.example.ExampleImagery());
+ openmct.install(openmct.plugins.example.ExampleTags());
+
openmct.install(openmct.plugins.Espresso());
openmct.install(openmct.plugins.MyItems());
- openmct.install(openmct.plugins.Generator());
- openmct.install(openmct.plugins.ExampleImagery());
openmct.install(openmct.plugins.PlanLayout());
openmct.install(openmct.plugins.Timeline());
openmct.install(openmct.plugins.Hyperlink());
@@ -188,11 +190,14 @@
openmct.install(openmct.plugins.Filters(['table', 'telemetry.plot.overlay']));
openmct.install(openmct.plugins.ObjectMigration());
openmct.install(openmct.plugins.ClearData(
- ['table', 'telemetry.plot.overlay', 'telemetry.plot.stacked'],
- {indicator: true}
+ ['table', 'telemetry.plot.overlay', 'telemetry.plot.stacked', 'example.imagery'],
+ { indicator: true }
));
openmct.install(openmct.plugins.Clock({ enableClockIndicator: true }));
openmct.install(openmct.plugins.Timer());
+ openmct.install(openmct.plugins.Timelist());
+ openmct.install(openmct.plugins.BarChart());
+ openmct.install(openmct.plugins.ScatterPlot());
openmct.start();
</script>
</html>