Fix the function returning the pads list in the drive

pull/1/head
yflory 2017-03-07 14:30:07 +01:00
parent 14938089ac
commit 9ad33574e9
1 changed files with 3 additions and 3 deletions

View File

@ -232,13 +232,13 @@ define([
return ret;
};
var getFilesDataFiles = function () {
var getFilesDataFiles = exp.getFilesDataFiles = function () {
var ret = [];
for (var el in files[FILES_DATA]) {
files[FILES_DATA].forEach(function (el) {
if (el.href && ret.indexOf(el.href) === -1) {
ret.push(el.href);
}
}
});
return ret;
};