aboutsummaryrefslogtreecommitdiff
path: root/uploader/static
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-09-24 16:40:03 -0500
committerFrederick Muriuki Muriithi2024-09-24 16:40:03 -0500
commitd8f8d84b5ff96f3e060c6a01351bb0a5a9aad7a8 (patch)
treebccf002378f3d5a47931abc74bb1128427849794 /uploader/static
parenta1106b2e3e6e5aa4d2781955721dddacf825df68 (diff)
downloadgn-uploader-d8f8d84b5ff96f3e060c6a01351bb0a5a9aad7a8.tar.gz
Respond to UI actions even for unimplemented links.
Diffstat (limited to 'uploader/static')
-rw-r--r--uploader/static/js/misc.js6
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.");
+});