Remove the alert when pressing del in 'all files'

This commit is contained in:
yflory
2017-01-09 18:38:05 +01:00
parent dba42a90c7
commit f74d0a46a4
5 changed files with 33 additions and 12 deletions

View File

@@ -58,6 +58,10 @@ define([
return path[0] && path[0] === TRASH;
};
var isPathInFilesData = exp.isPathInFilesData = function (path) {
return path[0] && path[0] === FILES_DATA;
};
var isFile = exp.isFile = function (element) {
return typeof(element) === "string";
};