mediawiki-extensions-InputBox/resources/ext.inputBox.js
Marius Hoch b71189cffe Improve initialization of ext.inputBox.js
Change-Id: I45b6a6106ece16f069907076a8f1f635d95fd2df
2014-10-05 19:03:05 +02:00

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 ) );