RetroZilla/xpfe/global/resources/content/aboutHome.js

13 lines
281 B
JavaScript
Raw Normal View History

// set whether autofocus is enabled (will use browser pref in release)
var aboutHomeAutofocus = true;
// autofocus function
function autoFocus() {
document.getElementById("rzSearch").focus();
}
window.onload = function() {
if (aboutHomeAutofocus == true) {
autoFocus();
}
};