[BUILD] Adds URLIndicator along with documentation

Adds URLIndicator to the build, testable adding

`openmct.install(new openmct.plugins.URLIndicatorPlugin({
url: 'http://localhost:8080/',
icon: 'check',
interval: 15000,
label: 'Localhost'
}))`

to the openmct file. Also added Documentation about the plugin.
This commit is contained in:
Even Stensberg
2017-01-27 23:14:37 +01:00
committed by Pete Richards
parent cf15ff5c07
commit c9bd60f50e
4 changed files with 134 additions and 2 deletions

View File

@@ -27,7 +27,8 @@ define([
'../../platform/features/autoflow/plugin',
'./timeConductor/plugin',
'../../example/imagery/plugin',
'../../platform/import-export/bundle'
'../../platform/import-export/bundle',
'./URLIndicatorPlugin/URLIndicatorPlugin'
], function (
_,
UTCTimeSystem,
@@ -35,7 +36,8 @@ define([
AutoflowPlugin,
TimeConductorPlugin,
ExampleImagery,
ImportExport
ImportExport,
URLIndicatorPlugin
) {
var bundleMap = {
CouchDB: 'platform/persistence/couch',
@@ -121,5 +123,7 @@ define([
plugins.ExampleImagery = ExampleImagery;
plugins.URLIndicatorPlugin = URLIndicatorPlugin;
return plugins;
});