Skip to content

Commit 7466ccf

Browse files
author
Sachin Maheshwari
committed
disabling button double click
1 parent 1716a65 commit 7466ccf

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

web-assets/js/signup.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,7 @@ var qs = (function (a) {
1111
return b;
1212
})(window.location.search.substr(1).split("&"));
1313
$(document).ready(function () {
14-
$("#continueBtn").submit(function() {
15-
$(this).submit(function() {
16-
return false;
17-
});
18-
return true;
19-
});
14+
$('.continue-btn').dblclick(false);
2015
$.each(countryObjs, function () {
2116
$("#country").append(
2217
$("<option></option>").text(this.name).val(JSON.stringify(this))

0 commit comments

Comments
 (0)