From 85385ec3ec2c5bce5ddde3e3c06823ece48bbd5f Mon Sep 17 00:00:00 2001 From: Enlcxx Date: Mon, 16 Sep 2019 12:53:47 -0400 Subject: [PATCH] update docs --- src/app/document/title/title.component.ts | 5 +++-- src/index.html | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/document/title/title.component.ts b/src/app/document/title/title.component.ts index e850002ca..b6e9f2e7a 100644 --- a/src/app/document/title/title.component.ts +++ b/src/app/document/title/title.component.ts @@ -18,6 +18,7 @@ export class TitleComponent implements OnInit { title: string; urls: string[]; defaultTitle = 'Alyle UI'; + longTitle = 'Alyle UI | Minimal Design, a set of components for Angular.'; set route(val: string) { if (val !== this.route) { @@ -37,11 +38,11 @@ export class TitleComponent implements OnInit { this.titleService.setTitle(`${this.title} | ${this.defaultTitle}`); } } else { - this.titleService.setTitle(this.defaultTitle); + this.titleService.setTitle(this.longTitle); } } else { this.title = ''; - this.titleService.setTitle(this.defaultTitle); + this.titleService.setTitle(this.longTitle); } this._ads.update(val, this._pageContent, this._theme); diff --git a/src/index.html b/src/index.html index bfaf677d5..47a5065b0 100644 --- a/src/index.html +++ b/src/index.html @@ -2,7 +2,7 @@ - Alyle UI + Alyle UI | Minimal Design, a set of components for Angular.