Fix lint errors

This commit is contained in:
yflory
2016-12-22 18:16:38 +01:00
parent 52a593c2c2
commit a10eac2773
2 changed files with 12 additions and 7 deletions

View File

@@ -596,13 +596,16 @@ define([
var rootFiles = getRootFiles();
var trashFiles = getTrashFiles();
var templateFiles = getTemplateFiles();
var newPath, parentEl;
if (path && isPathInHrefArray(path)) {
var parentEl = findElement(files, newPath);
newPath = decodeURIComponent(path).split(',');
parentEl = findElement(files, newPath);
parentEl.push(href);
return;
}
else if (path && name) {
var newPath = decodeURIComponent(path).split(',');
var parentEl = findElement(files, newPath);
if (path && name) {
newPath = decodeURIComponent(path).split(',');
parentEl = findElement(files, newPath);
if (parentEl) {
var newName = getAvailableName(parentEl, name);
parentEl[newName] = href;
@@ -621,7 +624,7 @@ define([
var href = fileData.href;
var test = files[FILES_DATA].some(function (o) {
o.href === href;
return o.href === href;
});
if (!test) {
files[FILES_DATA].push(fileData);