This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Description
Currently we use jquery for some very rudimentary operations on the recaptcha page.
|
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script> |
|
<link rel="stylesheet" href="/_matrix/static/client/register/style.css"> |
|
<script> |
|
function captchaDone() { |
|
$('#registrationForm').submit(); |
|
} |
This seems like overkill since they could easily be replaced by document.getElementById or document.querySelector.