mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
18 lines
321 B
JavaScript
18 lines
321 B
JavaScript
/**
|
|
* phpBB3 ACP functions
|
|
*/
|
|
|
|
/**
|
|
* Run onload functions
|
|
*/
|
|
(function($) {
|
|
$(document).ready(function() {
|
|
// Swap .nojs and .hasjs
|
|
$('body.nojs').toggleClass('nojs hasjs');
|
|
|
|
// Focus forms
|
|
$('form[data-focus]:first').each(function() {
|
|
$('#' + this.getAttribute('data-focus')).focus();
|
|
});
|
|
});
|
|
})(jQuery);
|