Files
laipower/wp-content/plugins/two-factor/providers/js/two-factor-login.js

12 lines
206 B
JavaScript

/* global document, setTimeout */
( function() {
setTimeout( function() {
var d;
try {
d = document.getElementById( 'authcode' );
d.value = '';
d.focus();
} catch ( e ) {}
}, 200 );
}() );