annotate accounts/static/js/accounts_code.js @ 1214:9a011e2de2f6 modernize tip

Add more coverage to antispam utils unit tests.
author Brian Neal <bgneal@gmail.com>
date Mon, 10 Feb 2025 19:34:14 -0600
parents be233ba7ca31
children
rev   line source
bgneal@905 1 $(document).ready(function() {
bgneal@905 2 $.get('/accounts/register/code/', function(data) {
bgneal@905 3 $('#reg-code-block').text(data.code);
bgneal@905 4 });
bgneal@905 5 });