mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 14:33:59 +00:00
Fix window target when opening feedbackUrl
'_new' should be '_blank', but '_blank' is also the default, so just remove the argument. Change-Id: I8f922b835b2bc14e5641e0ab29bf002b32301490
This commit is contained in:
parent
dd794ddd40
commit
452545fa2e
|
@ -888,7 +888,7 @@ ve.ui.MWSaveDialog.prototype.getActionProcess = function ( action ) {
|
|||
}
|
||||
if ( action === 'report' ) {
|
||||
return new OO.ui.Process( function () {
|
||||
window.open( this.constructor.static.feedbackUrl, '_new' );
|
||||
window.open( this.constructor.static.feedbackUrl );
|
||||
}, this );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue