We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb652b4 commit 383bb89Copy full SHA for 383bb89
1 file changed
src/resourcemanager/modules/ResourceManagerLauncher/module.js
@@ -86,6 +86,10 @@
86
87
FrameTrail.module('Database').loadConfigData(function() {
88
89
+ // Resource manager always uses classic theme (no per-project theming)
90
+ var _targetEl = document.querySelector(FrameTrail.getState('target'));
91
+ if (_targetEl) _targetEl.setAttribute('data-frametrail-theme', 'classic');
92
+
93
// Apply config language before any UI is rendered
94
var configLang = (FrameTrail.module('Database').config || {}).defaultLanguage;
95
if (configLang) { FrameTrail.module('Localization').setLanguage(configLang); }
0 commit comments