From 6bf293f96b0574dc0179bce11d798e1c51c28108 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Thu, 12 Jan 2017 14:51:46 -0800 Subject: [PATCH] [Plugins] Install plugins for dev client --- index.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index d3cdac9320..9526465548 100644 --- a/index.html +++ b/index.html @@ -32,12 +32,13 @@ [ 'example/imagery', 'example/eventGenerator', - 'example/generator', - 'platform/features/my-items', - 'platform/persistence/local' + 'example/generator' ].forEach( openmct.legacyRegistry.enable.bind(openmct.legacyRegistry) ); + openmct.install(openmct.plugins.myItems); + openmct.install(openmct.plugins.localStorage); + openmct.install(openmct.plugins.espresso); openmct.start(); });