We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ae5992 commit 1716a65Copy full SHA for 1716a65
web-assets/js/signup.js
@@ -11,10 +11,12 @@ var qs = (function (a) {
11
return b;
12
})(window.location.search.substr(1).split("&"));
13
$(document).ready(function () {
14
- $("#continueBtn").dblclick(function(e){
15
- e.preventDefault();
16
- console.log("Double-click disabled!");
17
- });
+ $("#continueBtn").submit(function() {
+ $(this).submit(function() {
+ return false;
+ });
18
+ return true;
19
20
$.each(countryObjs, function () {
21
$("#country").append(
22
$("<option></option>").text(this.name).val(JSON.stringify(this))
0 commit comments