mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/InputBox
synced 2024-11-15 11:13:27 +00:00
1a257d5a52
Bug: 72235 Change-Id: I93e2b835b554275c9a871883240e9fd45d33f3d8
30 lines
864 B
JavaScript
30 lines
864 B
JavaScript
/**
|
|
* Disable InputBox submit button when the corresponding text input field is empty.
|
|
*
|
|
* @author Tony Thomas
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
|
|
*/
|
|
( function ( $, mw ) {
|
|
'use strict';
|
|
mw.hook( 'wikipage.content' ).add( function( $content ) {
|
|
var $input = $content.find( '.createboxInput:not([type=hidden])' ),
|
|
onChange = function() {
|
|
var $textbox = $( this ),
|
|
$submit = $textbox.data( 'form-submit' );
|
|
|
|
if ( !$submit ) {
|
|
$submit = $textbox.nextAll( 'input.createboxButton' ).first();
|
|
$textbox.data( 'form-submit', $submit );
|
|
}
|
|
|
|
$submit.prop( 'disabled', $textbox.val().length < 1 );
|
|
}, i;
|
|
|
|
for ( i = 0; i < $input.length; i++ ) {
|
|
onChange.call( $input.get( i ) );
|
|
}
|
|
|
|
$input.on( 'keyup input change', $.debounce( 50, onChange ) );
|
|
} );
|
|
}( jQuery, mediaWiki ) );
|