mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/InputBox
synced 2024-11-27 16:39:59 +00:00
b71189cffe
Change-Id: I45b6a6106ece16f069907076a8f1f635d95fd2df
31 lines
863 B
JavaScript
31 lines
863 B
JavaScript
/**
|
|
* JavaScript functions for greying out InputBox Submit button until input recieved
|
|
* from user
|
|
*
|
|
* @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' ),
|
|
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 ) );
|