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:
Ed Sanders 2018-07-03 17:36:35 +01:00
parent dd794ddd40
commit 452545fa2e

View file

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