Artifact 3a7accefb8586f3f4587d5bb34eeb393caee7fff9500951d653f3a401cf65b3a:
- File src/login.js — part of check-in [c6785fabf9] at 2017-12-06 11:14:27 on branch trunk — Move all inline javascript associated with the login screen into a separate script file. (user: drh size: 300) [more...]
/* Javascript code to handle button actions on the login page */ var autofillButton = document.getElementById('autofillButton'); autofillButton.onclick = function(){ document.getElementById('u').value = 'anonymous'; document.getElementById('p').value = autofillButton.getAttribute('data-af'); };