Skip to content

Commit 39e66ca

Browse files
authored
Merge pull request #2 from WavesJ99/issue-7948-Notification-Manager
Issue 7948 notification manager
2 parents 894a5f3 + 7beb2a8 commit 39e66ca

File tree

5 files changed

+477
-335
lines changed

5 files changed

+477
-335
lines changed

src/MCT.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ import ToolbarRegistry from './ui/registries/ToolbarRegistry.js';
5858
import ViewRegistry from './ui/registries/ViewRegistry.js';
5959
import ApplicationRouter from './ui/router/ApplicationRouter.js';
6060
import Browse from './ui/router/Browse.js';
61-
6261
/**
6362
* Open MCT is an extensible web application for building mission
6463
* control user interfaces. This module is itself an instance of
@@ -274,6 +273,13 @@ export class MCT extends EventEmitter {
274273
*/
275274
this.annotation = new AnnotationAPI(this);
276275

276+
/**
277+
* MCT's annotation API that enables
278+
* Prioritized Notifications
279+
* @type {NotificationAPI}
280+
*/
281+
this.notifications = new NotificationAPI();
282+
277283
// Plugins that are installed by default
278284
this.install(this.plugins.Plot());
279285
this.install(this.plugins.TelemetryTable());

0 commit comments

Comments
 (0)