mediawiki-extensions-InputBox/resources/ext.inputBox.js
Kunal Mehta 5a03081a98 Set license-name to "MIT-Licence"
Follows-up d5dbe717b, which accidentally lost all licensing information.

Bug: T106642
Change-Id: I44024a0041040bbff42afceb650170af1d0b6c66
2015-08-24 00:39:42 +05:30

30 lines
834 B
JavaScript

/**
* Disable InputBox submit button when the corresponding text input field is empty.
*
* @author Tony Thomas
* @license http://opensource.org/licenses/MIT MIT License
*/
( 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 ) );