android supports animation

This commit is contained in:
pengfei.zhou
2019-11-29 15:07:32 +08:00
parent 410ad72d71
commit 4e596642f2
3 changed files with 100 additions and 67 deletions

View File

@@ -17,7 +17,11 @@ function fromDir(startPath, filter) {
fromDir(filename, filter);
}
else if (filename.indexOf(filter) >= 0) {
doMerge(startPath, files[i])
try {
doMerge(startPath, files[i])
} catch (e) {
console.log(e)
}
};
};
};