summaryrefslogtreecommitdiff
path: root/resources/mediawiki.special/mediawiki.special.userLogin.signup.js
blob: bba426051e4bb73982860eefa0a0204e56a05a60 (plain)
1
2
3
4
5
6
7
8
9
10
/**
 * JavaScript for Special:UserLogin/signup
 */
jQuery( document ).ready( function ( $ ) {
	$( '#wpCreateaccountMail' )
		.on( 'change', function() {
			$( '.mw-row-password' ).toggle( !$( this ).attr( 'checked' ) );
		} )
		.trigger( 'change' );
} );