Merge pull request #7540 from vector-im/bwindels/alwaysshowdharma

Redesign: ignore setting and always show dharma theme for now
pull/7740/head
Bruno Windels 2018-10-23 19:35:53 +00:00 committed by GitHub
commit ffc0d3cda0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ async function loadApp() {
// as quickly as we possibly can, set a default theme...
const styleElements = Object.create(null);
let a;
const theme = SettingsStore.getValue("theme");
const theme = "dharma";//SettingsStore.getValue("theme");
for (let i = 0; (a = document.getElementsByTagName("link")[i]); i++) {
const href = a.getAttribute("href");
if (!href) continue;