Skip to content
Snippets Groups Projects
Commit e9ad7976 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'theme' into 'pregmod-master'

make (user) themes persist trough page reloads

See merge request !6528
parents 90cdafe8 1b1155f6
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,13 @@ App.UI.Theme = (function() { ...@@ -5,6 +5,13 @@ App.UI.Theme = (function() {
let currentThemeElement = null; let currentThemeElement = null;
let devTheme = null; let devTheme = null;
// reload theme on page reload
$(document).on(":passagestart", () => {
if (currentThemeElement === null && V.theme !== 0) {
load(V.theme);
}
});
return { return {
selector: selector, selector: selector,
devTheme: reloadDevTheme, devTheme: reloadDevTheme,
......
...@@ -1057,7 +1057,7 @@ This save was created using FC version $ver build $releaseID. ...@@ -1057,7 +1057,7 @@ This save was created using FC version $ver build $releaseID.
</div> </div>
<p> <p>
UI theme selector. Allows to select a single CSS file to be loaded. <span class="red">The file has to be located in the same directory as the HTML file otherwise it will simply not load at all.</span> <span class="yellow">Themes do not persist through page reloads.</span> UI theme selector. Allows to select a single CSS file to be loaded. <span class="red">The file has to be located in the same directory as the HTML file otherwise it will simply not load at all.</span>
<<print App.UI.DOM.includeDOM(App.UI.Theme.selector(), "themeSelector")>> <<print App.UI.DOM.includeDOM(App.UI.Theme.selector(), "themeSelector")>>
</p> </p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment