Add a button to display the context menu for the trash on mobiles

pull/1/head
yflory 2017-06-09 17:02:50 +02:00
parent 75c3c10b20
commit 7134b00544
1 changed files with 1 additions and 1 deletions

View File

@ -2080,7 +2080,7 @@ define([
var isOpened = filesOp.comparePath(path, currentPath);
var $trashElement = createTreeElement(TRASH_NAME, $icon, [TRASH], false, true, false, isOpened);
$trashElement.addClass('root');
$trashElement.contextmenu(openTrashTreeContextMenu);
$trashElement.find('>.element-row').contextmenu(openTrashTreeContextMenu);
var $trashList = $('<ul>', { id: 'trashTree', 'class': 'category2' }).append($trashElement);
$container.append($trashList);
};