(demo app) Application menu bar enhancements (#2123)

* remove MDL from app component

- new app menu bar based on angular/material

* fix app selector

* improve menu bar labels
This commit is contained in:
Denys Vuika
2017-07-25 00:02:25 +01:00
committed by Eugenio Romano
parent 7983e4df97
commit 952da3ab99
4 changed files with 72 additions and 121 deletions

View File

@@ -28,7 +28,7 @@ import {
declare var document: any;
@Component({
selector: 'alfresco-app',
selector: 'adf-app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
@@ -93,9 +93,4 @@ export class AppComponent {
this.settingsService.setProviders(this.storage.getItem(`providers`));
}
}
onDragOverMainPage(event: any): boolean {
event.preventDefault();
return false;
}
}