diff options
author | Frederick Muriuki Muriithi | 2024-09-24 16:40:03 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-24 16:40:03 -0500 |
commit | d8f8d84b5ff96f3e060c6a01351bb0a5a9aad7a8 (patch) | |
tree | bccf002378f3d5a47931abc74bb1128427849794 /uploader/static/js/misc.js | |
parent | a1106b2e3e6e5aa4d2781955721dddacf825df68 (diff) | |
download | gn-uploader-d8f8d84b5ff96f3e060c6a01351bb0a5a9aad7a8.tar.gz |
Respond to UI actions even for unimplemented links.
Diffstat (limited to 'uploader/static/js/misc.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."); +}); |