mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
page title service (#2403)
This commit is contained in:
committed by
Maurizio Vitale
parent
e756db03cd
commit
7c1bd46642
@@ -2,7 +2,7 @@
|
||||
"ecmHost": "http://{hostname}:{port}/ecm",
|
||||
"bpmHost": "http://{hostname}:{port}/bpm",
|
||||
"application": {
|
||||
"name": "Alfresco"
|
||||
"name": "Alfresco ADF Appplication"
|
||||
},
|
||||
"pagination": {
|
||||
"size": 25
|
||||
|
@@ -2,7 +2,7 @@
|
||||
"ecmHost": "http://{hostname}",
|
||||
"bpmHost": "http://{hostname}",
|
||||
"application": {
|
||||
"name": "Alfresco"
|
||||
"name": "Alfresco ADF Appplication"
|
||||
},
|
||||
"pagination": {
|
||||
"size": 25
|
||||
|
@@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
import { Component, ViewEncapsulation } from '@angular/core';
|
||||
import { AlfrescoSettingsService, AlfrescoTranslationService, StorageService } from 'ng2-alfresco-core';
|
||||
import { AlfrescoSettingsService, AlfrescoTranslationService, PageTitle, StorageService } from 'ng2-alfresco-core';
|
||||
|
||||
@Component({
|
||||
selector: 'adf-app',
|
||||
@@ -29,8 +29,10 @@ export class AppComponent {
|
||||
|
||||
constructor(private settingsService: AlfrescoSettingsService,
|
||||
private translateService: AlfrescoTranslationService,
|
||||
private storage: StorageService) {
|
||||
private storage: StorageService,
|
||||
pageTitle: PageTitle) {
|
||||
this.setProvider();
|
||||
pageTitle.setTitle();
|
||||
}
|
||||
|
||||
isAPageWithHeaderBar(): boolean {
|
||||
|
Reference in New Issue
Block a user