phpbb/phpBB/adm/style/admin.js
Vjacheslav Trushkin 8567adf5db [ticket/11957] Include admin.js in footer
Include admin.js in footer, swap .hasjs and .nojs

PHPBB3-11957
2013-10-26 22:00:23 +03:00

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);