ARTEMIS-1270 Enforce Theming
On some browsers during initial, storage may have set to another theme, enforce the theme on branding load.
This commit is contained in:
parent
022d5ba853
commit
e8783e31d0
|
@ -59,10 +59,14 @@ var activemqBranding = (function (self) {
|
||||||
|
|
||||||
self.module = angular.module(self.pluginName, ['hawtioCore']);
|
self.module = angular.module(self.pluginName, ['hawtioCore']);
|
||||||
self.module.run(function (branding) {
|
self.module.run(function (branding) {
|
||||||
self.log.debug("ActivMQ theme loaded");
|
self.log.info("ActiveMQ theme loaded");
|
||||||
|
if (localStorage['theme'] != 'activemq' || localStorage['branding'] != 'activemq') {
|
||||||
|
localStorage['theme'] = 'activemq';
|
||||||
|
localStorage['branding'] = 'activemq';
|
||||||
|
location.reload();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
hawtioPluginLoader.addModule(self.pluginName);
|
|
||||||
return self;
|
return self;
|
||||||
})(activemqBranding || {});
|
})(activemqBranding || {});
|
||||||
|
|
||||||
|
hawtioPluginLoader.addModule(activemqBranding.pluginName);
|
||||||
|
|
Loading…
Reference in New Issue