summaryrefslogtreecommitdiff
path: root/www/wiki/resources/src/mediawiki.special/mediawiki.special.contributions.js
blob: f65a2579b8cf77cddbca610a926d7f0974011e30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
( function ( mw, $ ) {
	$( function () {
		var startInput = mw.widgets.DateInputWidget.static.infuse( 'mw-date-start' ),
			endInput = mw.widgets.DateInputWidget.static.infuse( 'mw-date-end' );

		startInput.on( 'deactivate', function ( userSelected ) {
			if ( userSelected ) {
				endInput.focus();
			}
		} );
	} );
}( mediaWiki, jQuery ) );