diff options
Diffstat (limited to 'uploader/static/js')
-rw-r--r-- | uploader/static/js/misc.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/uploader/static/js/misc.js b/uploader/static/js/misc.js new file mode 100644 index 0000000..cf7b39e --- /dev/null +++ b/uploader/static/js/misc.js @@ -0,0 +1,6 @@ +"Miscellaneous functions and event-handlers" + +$(".not-implemented").click((event) => { + event.preventDefault(); + alert("This feature is not implemented yet. Please bear with us."); +}); |