d3494f74f8f625ac1c9b7fcd5311a90bff657c71
[lhc/web/wiklou.git] / resources / src / mediawiki.special / mediawiki.special.userrights.js
1 /*!
2 * JavaScript for Special:UserRights
3 */
4 ( function ( $ ) {
5 var convertmessagebox = require( 'mediawiki.notification.convertmessagebox' );
6 // Replace successbox with notifications
7 convertmessagebox();
8
9 // Dynamically show/hide the "other time" input under each dropdown
10 $( '.mw-userrights-nested select' ).on( 'change', function ( e ) {
11 $( e.target.parentNode ).find( 'input' ).toggle( $( e.target ).val() === 'other' );
12 } );
13 }( jQuery ) );