mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-01 01:16:30 +00:00
Fix import button events
Change-Id: Iecb6e663cdf2cc53f6053a21707aff1ff2911181
This commit is contained in:
parent
cb6d98b1f4
commit
fbb8837a88
|
@ -126,7 +126,7 @@
|
||||||
onNameChange();
|
onNameChange();
|
||||||
|
|
||||||
function onImportChange() {
|
function onImportChange() {
|
||||||
documentNameInput.getValidity().then( function () {
|
importInput.getValidity().then( function () {
|
||||||
importButton.setDisabled( false );
|
importButton.setDisabled( false );
|
||||||
}, function () {
|
}, function () {
|
||||||
importButton.setDisabled( true );
|
importButton.setDisabled( true );
|
||||||
|
@ -149,9 +149,9 @@
|
||||||
// TODO: Check page exists?
|
// TODO: Check page exists?
|
||||||
return !!mw.Title.newFromText( value );
|
return !!mw.Title.newFromText( value );
|
||||||
} );
|
} );
|
||||||
|
importInput.on( 'change', onImportChange );
|
||||||
importInput.on( 'enter', importTitle );
|
importInput.on( 'enter', importTitle );
|
||||||
importButton.on( 'click', importTitle );
|
importButton.on( 'click', importTitle );
|
||||||
importButton.setDisabled( false );
|
|
||||||
onImportChange();
|
onImportChange();
|
||||||
|
|
||||||
if ( pageTitle ) {
|
if ( pageTitle ) {
|
||||||
|
|
Loading…
Reference in a new issue