X-Git-Url: https://scripts.mit.edu/gitweb/autoinstallsdev/mediawiki.git/blobdiff_plain/19e297c21b10b1b8a3acad5e73fc71dcb35db44a..6932310fd58ebef145fa01eb76edf7150284d8ea:/resources/src/mediawiki/htmlform/autocomplete.js diff --git a/resources/src/mediawiki/htmlform/autocomplete.js b/resources/src/mediawiki/htmlform/autocomplete.js new file mode 100644 index 00000000..81579755 --- /dev/null +++ b/resources/src/mediawiki/htmlform/autocomplete.js @@ -0,0 +1,25 @@ +/* + * HTMLForm enhancements: + * Set up autocomplete fields. + */ +( function ( mw, $ ) { + + 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', + $.grep( $el.data( 'autocomplete' ), function ( v ) { + return v.indexOf( val ) === 0; + } ) + ); + } + } ); + } ); + } + } ); + +}( mediaWiki, jQuery ) );