From f03bb6ce7da87c6e580f7f9f079129eab07515f2 Mon Sep 17 00:00:00 2001 From: David M Sibley Date: Wed, 24 Oct 2018 09:04:04 -0500 Subject: [PATCH] fix: initialize cssVars after bootstrapping app --- web/src/main/webapp/main.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/src/main/webapp/main.js b/web/src/main/webapp/main.js index 6d750727c..ecb37ea6d 100644 --- a/web/src/main/webapp/main.js +++ b/web/src/main/webapp/main.js @@ -36,6 +36,8 @@ require(['./config', './js/login-config'], function(config, loginConfig) { */ function bootstrapApplication() { angular.bootstrap(document, ['my-app']); + // eslint-disable-next-line no-undef + cssVars({shadowDOM: true, watch: true}); } /**