Followup r82156: skip relative URLs with absolute paths too
[mediawiki.git] / resources / mediawiki.special / mediawiki.special.search.js
blobd4317188bbfda1ce16c4500fb618db3878e91d7e
1 /*
2  * JavaScript for Specical:Search
3  */
4 ( function( $, mw ) {
6 // Emulate HTML5 autofocus behavior in non HTML5 compliant browsers
7 if ( !( 'autofocus' in document.createElement( 'input' ) ) ) {
8         $( 'input[autofocus]:first' ).focus();
11 } )( jQuery, mediaWiki );