Merge "User: Avoid deprecated Linker::link()"
[lhc/web/wiklou.git] / resources / src / mediawiki.special / mediawiki.special.movePage.js
1 /*!
2 * JavaScript for Special:MovePage
3 */
4 ( function ( mw, $ ) {
5 $( function () {
6 // Infuse for pretty dropdown
7 OO.ui.infuse( $( '#wpNewTitle' ) );
8 // Limit to bytes, not characters
9 mw.widgets.visibleByteLimit( OO.ui.infuse( $( '#wpReason' ) ) );
10 // Infuse for nicer "help" popup
11 if ( $( '#wpMovetalk-field' ).length ) {
12 OO.ui.infuse( $( '#wpMovetalk-field' ) );
13 }
14 } );
15 }( mediaWiki, jQuery ) );