Fixup clipboard usage in filemanger

This commit is contained in:
Johannes Zellner
2022-09-04 12:09:07 +02:00
parent 5d99562e63
commit f0b6293b22
3 changed files with 127 additions and 114 deletions
+8 -2
View File
@@ -305,22 +305,28 @@
on-upload-file="onUploadFile(cwd)"
on-new-file="newFile.show(cwd)"
on-new-folder="newFolder.show(cwd)"
on-copy-entries="actionCopy(cwd, entries)"
on-cut-entries="actionCut(cwd, entries)"
on-paste-entries="actionPaste(cwd, entries)"
on-delete-entries="deleteEntries.show(cwd, entries)"
on-rename-entry="renameEntry.show(cwd, entry)"
on-extract-entry="extractEntry(cwd, entry)"
on-chown-entries="chownEntries.show(cwd, entries)"
backend-type="backendType" backend-id="backendId" view="VIEW.LEFT"
backend-type="backendType" backend-id="backendId" view="VIEW.LEFT" clipboard="clipboard"
ng-click="setActiveView(VIEW.LEFT)"></filetree>
<filetree ng-show="splitView" class="two-pane"
on-upload-folder="onUploadFolder(cwd)"
on-upload-file="onUploadFile(cwd)"
on-new-file="newFile.show(cwd)"
on-new-folder="newFolder.show(cwd)"
on-copy-entries="actionCopy(cwd, entries)"
on-cut-entries="actionCut(cwd, entries)"
on-paste-entries="actionPaste(cwd, entries)"
on-delete-entries="deleteEntries.show(cwd, entries)"
on-rename-entry="renameEntry.show(cwd, entry)"
on-extract-entry="extractEntry(cwd, entry)"
on-chown-entries="chownEntries.show(cwd, entries)"
backend-type="backendType" backend-id="backendId" view="VIEW.RIGHT"
backend-type="backendType" backend-id="backendId" view="VIEW.RIGHT" clipboard="clipboard"
ng-click="setActiveView(VIEW.RIGHT)"></filetree>
</div>