1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-27 09:21:29 +00:00

Merge branch 'safari-mediaquerychange' of JustAMacUser/tt-rss into master

This commit is contained in:
fox
2019-12-13 18:54:16 +00:00
committed by Gogs

View File

@@ -34,9 +34,11 @@ define(["dojo/_base/declare"], function (declare) {
if (window.matchMedia) {
const mql = window.matchMedia('(prefers-color-scheme: dark)');
mql.addEventListener("change", () => {
this.nightModeChanged(mql.matches);
});
try {
mql.addEventListener("change", () => {
this.nightModeChanged(mql.matches);
});
} catch (e) {}
this.nightModeChanged(mql.matches);
}