diff options
author | Christoph (Sheogorath) Kern | 2018-03-26 11:27:38 +0200 |
---|---|---|
committer | GitHub | 2018-03-26 11:27:38 +0200 |
commit | 6a4350af2bc185374671f36970e1aef8b7d9ac93 (patch) | |
tree | e6d8e54557870f447f74ea69394a52046adb9fd3 /public/js | |
parent | 57c47a65dde59d355fba702bc91c63eebcc2533c (diff) | |
parent | 8b69013ebd043d4cee4cf7e379b3d5ce1c3e5a79 (diff) |
Merge pull request #778 from SISheogorath/fix/nightModeToggle
Fix night mode button after restore
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public/js/index.js b/public/js/index.js index 68fb2614..d76a37fe 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -451,6 +451,7 @@ $(document).ready(function () { // Re-enable nightmode if (store.get('nightMode') || Cookies.get('nightMode')) { $body.addClass('night') + ui.toolbar.night.addClass('active') } // showup |