fix toolbar and page port view for size in small devices (#2338)

remove old alfresco and activiti prefix
fix login toggle mobile devices
This commit is contained in:
Eugenio Romano
2017-09-14 19:53:46 +01:00
committed by GitHub
parent 6d12b07fe2
commit 5c7ccb9b83
19 changed files with 127 additions and 116 deletions

View File

@@ -3,7 +3,7 @@
<adf-sites-dropdown (change)="getSiteContent($event)">
</adf-sites-dropdown>
</div>
<alfresco-upload-drag-area
<adf-upload-drag-area
[parentId]="documentList.currentFolderId"
[versioning]="versioning"
[adf-node-permission]="'create'"
@@ -208,7 +208,7 @@
</content-action>
</content-actions>
</adf-document-list>
</alfresco-upload-drag-area>
</adf-upload-drag-area>
</div>
<context-menu-holder></context-menu-holder>
@@ -264,7 +264,7 @@
</md-input-container>
</section>
<div *ngIf="!acceptedFilesTypeShow">
<alfresco-upload-button
<adf-upload-button
#uploadButton
tooltip="Custom tooltip"
[disabled]="!enableUpload"
@@ -276,10 +276,10 @@
[adf-node-permission]="'create'"
[adf-nodes]="getCurrentDocumentListNode()"
(permissionEvent)="handlePermissionError($event)">
</alfresco-upload-button>
</adf-upload-button>
</div>
<div *ngIf="acceptedFilesTypeShow">
<alfresco-upload-button
<adf-upload-button
#uploadButton
tooltip="Custom tooltip"
[disabled]="!enableUpload"
@@ -292,7 +292,7 @@
[adf-node-permission]="'create'"
[adf-nodes]="getCurrentDocumentListNode()"
(permissionEvent)="handlePermissionError($event)">
</alfresco-upload-button>
</adf-upload-button>
</div>
<section>
<md-checkbox [(ngModel)]="enableUpload">Enable upload (demoing enabled/disabled state only if the permission are not checked dynamically)</md-checkbox>
@@ -312,7 +312,7 @@
<div *ngIf="showViewer">
<ng-container *ngIf="!useInlineViewer">
<alfresco-viewer
<adf-viewer
[(showViewer)]="showViewer"
[fileNodeId]="fileNodeId"
[overlayMode]="true">
@@ -323,15 +323,15 @@
</ng-template>
</extension-viewer>
</alfresco-viewer>
</adf-viewer>
</ng-container>
<ng-container *ngIf="useInlineViewer">
<div class="adf-not-overlay-viewer">
<alfresco-viewer
<adf-viewer
[(showViewer)]="showViewer"
[fileNodeId]="fileNodeId">
</alfresco-viewer>
</adf-viewer>
</div>
</ng-container>
</div>