From: Bastien Wirtz Date: Mon, 25 May 2020 18:40:14 +0000 (-0700) Subject: Merge pull request #60 from sylv-io/html-title X-Git-Tag: 120405250~2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=554fc76d750ef6a3516a2f1141ba575fb2563a19;hp=0d6a177bae29d74c9e91569947bcb48977c8e03d;p=github%2Fbastienwirtz%2Fhomer.git Merge pull request #60 from sylv-io/html-title app.js: html title based on configuration --- diff --git a/app.js b/app.js index e796110..9e6bdd9 100644 --- a/app.js +++ b/app.js @@ -21,7 +21,7 @@ const app = new Vue({ this.checkOffline(); try { this.config = await this.getConfig(); - document.title = this.config.title + ' | Homer'; + document.title = this.config.title + ' | ' + this.config.subtitle; } catch (error) { this.offline = true; }