mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-03-24 07:22:43 +00:00
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);
|
|
}
|
|
});
|