Skip to content

Commit

Permalink
fix: ⚡ Minor Changes
Browse files Browse the repository at this point in the history
-The icon is fixed
-A modified build of elfinder-client will be used.
  • Loading branch information
Vidalnt committed Oct 6, 2024
1 parent 29fb512 commit 56def62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions imjoy_elfinder/templates/elfinder/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,9 +307,9 @@
})
// set app icon
const link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = serverUrl + '/static/img/favicon.ico';
link.type = 'image/png';
link.rel = 'icon';
link.href = serverUrl + '/static/img/logo.png';
document.getElementsByTagName('head')[0].appendChild(link);

})()
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

REQUIRES = [
"aiofiles",
"elfinder-client",
"elfinder-client @ https://github.com/Vidalnt/elFinder-1/releases/download/2.1.62a3/elfinder-client-2.1.62a3.tar.gz",
"fastapi",
"jinja2",
"pathvalidate",
Expand Down

0 comments on commit 56def62

Please sign in to comment.