diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-10-16 21:29:28 -0700 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-10-16 21:58:37 -0700 |
commit | 67fd101a38baf3e7634c494eb286a671685a76b6 (patch) | |
tree | 848c2a49cb570191b268866dd75a899d5346a088 /src/App.vue | |
parent | e60870140461be59347a57e5e3ad1657a6326437 (diff) | |
download | homer-67fd101a38baf3e7634c494eb286a671685a76b6.tar.gz homer-67fd101a38baf3e7634c494eb286a671685a76b6.tar.zst homer-67fd101a38baf3e7634c494eb286a671685a76b6.zip |
Dark theme improvements
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index 0f137b9..c47b5a9 100644 --- a/src/App.vue +++ b/src/App.vue | |||
@@ -159,7 +159,9 @@ export default { | |||
159 | } | 159 | } |
160 | this.config = merge(defaults, config); | 160 | this.config = merge(defaults, config); |
161 | this.services = this.config.services; | 161 | this.services = this.config.services; |
162 | document.title = this.config.documentTitle || `${this.config.title} | ${this.config.subtitle}`; | 162 | document.title = |
163 | this.config.documentTitle || | ||
164 | `${this.config.title} | ${this.config.subtitle}`; | ||
163 | if (this.config.stylesheet) { | 165 | if (this.config.stylesheet) { |
164 | let stylesheet = ""; | 166 | let stylesheet = ""; |
165 | for (const file of this.config.stylesheet) { | 167 | for (const file of this.config.stylesheet) { |