summaryrefslogtreecommitdiff
path: root/WebInterface/NodeJSServer/src/js/modules/ui/collections/play.js
diff options
context:
space:
mode:
Diffstat (limited to 'WebInterface/NodeJSServer/src/js/modules/ui/collections/play.js')
-rw-r--r--WebInterface/NodeJSServer/src/js/modules/ui/collections/play.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/WebInterface/NodeJSServer/src/js/modules/ui/collections/play.js b/WebInterface/NodeJSServer/src/js/modules/ui/collections/play.js
deleted file mode 100644
index cdea777..0000000
--- a/WebInterface/NodeJSServer/src/js/modules/ui/collections/play.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import Backdrop from '../components/backdrop';
-import BannerController from '../components/notification-banner';
-
-/**
- * UI Loader for play page
- */
-export default class Play {
- /**
- * Registers components for play page
- */
- constructor() {
- this.backdrop = new Backdrop('menu', 'front-layer', 'show-menu');
- this.bannerController = new BannerController(iface, 'notifications',
- 'banner-info', 'dismiss-banner', 'notification-amount');
-
- this.backdrop.initialize();
- this.bannerController.initialize();
- }
-}