summaryrefslogtreecommitdiff
path: root/static/website/js/custom.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/website/js/custom.js')
-rw-r--r--static/website/js/custom.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/static/website/js/custom.js b/static/website/js/custom.js
index 2573428..4720549 100644
--- a/static/website/js/custom.js
+++ b/static/website/js/custom.js
@@ -65,6 +65,18 @@ $(document)
updateGallery($(this));
});
}
+
+ var fewSeconds = 5;
+ $('#subbtn').click(function(){
+ // Ajax request
+ alert("I have read all the instructions carefully");
+ var btn = $(this);
+ /*btn.prop('disabled', true);
+ setTimeout(function(){
+ btn.prop('disabled', false);
+ }, fewSeconds*1000);*/
+});
+
});
// build key actions
@@ -91,3 +103,4 @@ $(document)
e.preventDefault(); // prevent the default action (scroll / move caret)
});
+