add smooth mp4

This commit is contained in:
anarch3 2022-11-15 18:06:29 -05:00
parent 043628493d
commit f84072eda8
3 changed files with 14 additions and 1 deletions

View file

@ -15,6 +15,10 @@ function absolutePath (href) {
return link.href;
}
function extension(string) {
return string.slice((string.lastIndexOf(".") - 2 >>> 0) + 2);
}
let dropArea = document.getElementById("dropArea");
;['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => {