%PDF- %PDF-
| Direktori : /www/varak.net/wiki.varak.net/resources/src/mediawiki.htmlform/ |
| Current File : //www/varak.net/wiki.varak.net/resources/src/mediawiki.htmlform/autocomplete.js |
/*
* HTMLForm enhancements:
* Set up autocomplete fields.
*/
( function () {
mw.hook( 'htmlform.enhance' ).add( function ( $root ) {
var $autocomplete = $root.find( '.mw-htmlform-autocomplete' );
if ( $autocomplete.length ) {
mw.loader.using( 'jquery.suggestions', function () {
$autocomplete.suggestions( {
fetch: function ( val ) {
var $el = $( this );
$el.suggestions( 'suggestions',
$el.data( 'autocomplete' ).filter( function ( v ) {
return v.indexOf( val ) === 0;
} )
);
}
} );
} );
}
} );
}() );