mirror of
https://github.com/nextcloud/server.git
synced 2026-03-20 17:43:15 -04:00
remove file action elements before recreating them
This commit is contained in:
parent
6ed2df11fc
commit
20a43d1982
1 changed files with 5 additions and 0 deletions
|
|
@ -68,6 +68,9 @@ var FileActions = {
|
|||
if ($('tr[data-file="'+file+'"]').data('renaming')) {
|
||||
return;
|
||||
}
|
||||
|
||||
// recreate fileactions
|
||||
parent.children('a.name').find('.fileactions').remove();
|
||||
parent.children('a.name').append('<span class="fileactions" />');
|
||||
var defaultAction = FileActions.getDefault(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions());
|
||||
|
||||
|
|
@ -117,6 +120,8 @@ var FileActions = {
|
|||
addAction('Share', actions.Share);
|
||||
}
|
||||
|
||||
// remove the existing delete action
|
||||
parent.parent().children().last().find('.action.delete').remove();
|
||||
if (actions['Delete']) {
|
||||
var img = FileActions.icons['Delete'];
|
||||
if (img.call) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue