Skip to content

Commit 4ae5992

Browse files
author
Sachin Maheshwari
committed
disable double clicking
1 parent bc4faf5 commit 4ae5992

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

web-assets/js/signup.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ var qs = (function (a) {
1111
return b;
1212
})(window.location.search.substr(1).split("&"));
1313
$(document).ready(function () {
14+
$("#continueBtn").dblclick(function(e){
15+
e.preventDefault();
16+
console.log("Double-click disabled!");
17+
});
1418
$.each(countryObjs, function () {
1519
$("#country").append(
1620
$("<option></option>").text(this.name).val(JSON.stringify(this))

0 commit comments

Comments
 (0)