]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/user.js
Add checkbox for contributor terms and improve text
[rails.git] / app / assets / javascripts / user.js
index 40ca866c52d65ab7dca633b55a383780ea4186d8..13941d6f3e0c3e192b4d0028c16d6adbca828934 100644 (file)
@@ -125,8 +125,11 @@ $(document).ready(function () {
     $("#contributorTerms").load(url);
   });
 
+  $("#read_ct").on("click", function () { 
+    $("#continue").prop("disabled", !($(this).prop("checked") && $("#read_tou").prop("checked")));
+  });
+
   $("#read_tou").on("click", function () { 
-    var agreebtn = document.getElementById('agree');
-    agreebtn.disabled=!this.checked;
+    $("#continue").prop("disabled", !($(this).prop("checked") && $("#read_ct").prop("checked")));
   });
 });