mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* routed viewer (demo app) * toolbar support * app menu component for demo shell * navigate back button * fix unit tests * improve viewer type detection and rendering * download button * automatic pdf rendition, spinners, ui tweaks * border for pdf pages * scroll top support * docs update * info drawer placeholder
15 lines
424 B
HTML
15 lines
424 B
HTML
<adf-app-menu></adf-app-menu>
|
|
<adf-toolbar>
|
|
<adf-toolbar-title>
|
|
<md-select [(ngModel)]="selectedSource">
|
|
<md-option *ngFor="let source of sources" [value]="source.value">
|
|
{{ source.title }}
|
|
</md-option>
|
|
</md-select>
|
|
</adf-toolbar-title>
|
|
</adf-toolbar>
|
|
<adf-document-list
|
|
[currentFolderId]="selectedSource"
|
|
locationFormat="/files">
|
|
</adf-document-list>
|