blob: 2469fd13a501f3cfc656d0204b6bfc135a58ac5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/**
* 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 ) );
|