aboutsummaryrefslogtreecommitdiff
path: root/app/static/file.js
diff options
context:
space:
mode:
authorKaran Jayachandra <me@karanj.com>2025-11-14 18:10:49 +0100
committerKaran Jayachandra <me@karanj.com>2025-11-14 18:10:49 +0100
commit202cf761e5162720f25521a75ae7cd6a4e0e5456 (patch)
tree0e57324bc72629cba3ed817b3439780f6959e509 /app/static/file.js
parent90390365bd93a4ee086c2931bb70ffa571a726b9 (diff)
parent56eb065a8165b3f508a35734adbb00c76bee012a (diff)
Merge branch 'develop' into 'main'
Develop See merge request KaranJayachandra/match_up!21
Diffstat (limited to 'app/static/file.js')
-rw-r--r--app/static/file.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/app/static/file.js b/app/static/file.js
deleted file mode 100644
index 403ddf6..0000000
--- a/app/static/file.js
+++ /dev/null
@@ -1,11 +0,0 @@
-window.onload = function() {
- const fileInput = document.querySelector("#file-js input[type=file]");
- if (fileInput !== null) {
- fileInput.onchange = () => {
- if (fileInput.files.length > 0) {
- const fileName = document.querySelector("#file-js .file-name");
- fileName.textContent = fileInput.files[0].name;
- }
- }
- };
-} \ No newline at end of file