7 lines
166 B
JavaScript
7 lines
166 B
JavaScript
$(document).ready(function() {
|
|
var theme = localStorage.getItem("mailcow_theme");
|
|
if (theme !== null) {
|
|
localStorage.setItem("mailcow_theme", theme);
|
|
}
|
|
});
|