We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6990cc7 commit 1a662a5Copy full SHA for 1a662a5
docs/src/app/pages/page-title/page-title.ts
@@ -9,6 +9,8 @@
9
import {Injectable, inject} from '@angular/core';
10
import {Title} from '@angular/platform-browser';
11
12
+export const TITLE_SEPARATOR = ' • ';
13
+
14
/**
15
* Service responsible for setting the title that appears above the components and guide pages.
16
*/
@@ -26,7 +28,7 @@ export class ComponentPageTitle {
26
28
set title(title: string) {
27
29
this._title = title;
30
if (title !== '') {
- title = `${title} | Angular Material`;
31
+ title = `${title} ${TITLE_SEPARATOR} Angular Material`;
32
} else {
33
title = this._originalTitle;
34
}
0 commit comments