Converted to python flask #1

Merged
itdominator merged 49 commits from develop into master 2021-10-03 19:49:44 +00:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit 4dafc328a5 - Show all commits

View File

@ -29,7 +29,10 @@ const loadFavePath = (e) => {
}
const openFile = (eve) => {
const target = eve.target;
let target = eve.target;
if (!target.getAttribute("title"))
target = target.parentElement
const ftype = target.getAttribute("ftype");
const title = target.getAttribute("title");
const hash = target.getAttribute("hash");