mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-28 16:20:52 +00:00
Make sure all links have target=_blank in the save dialog
Anything that uses getParsedMessage could contain a link. Change-Id: I523edd935c4989e5929fca8891651c2287af973a
This commit is contained in:
parent
3ed7bb16a6
commit
2e0d642a11
|
@ -506,7 +506,7 @@ ve.init.mw.ViewPageTarget.prototype.onSaveError = function ( jqXHR, status, data
|
|||
$( '<strong>' ).text( mw.msg( 'captcha-label' ) ),
|
||||
document.createTextNode( mw.msg( 'colon-separator' ) ),
|
||||
$( $.parseHTML( mw.message( 'fancycaptcha-edit' ).parse() ) )
|
||||
.filter( 'a' ).attr( 'target', '_blank ' ).end()
|
||||
.filter( 'a' ).attr( 'target', '_blank' ).end()
|
||||
),
|
||||
$( '<img>' ).attr( 'src', editApi.captcha.url ),
|
||||
this.captcha.input.$element
|
||||
|
@ -697,7 +697,7 @@ ve.init.mw.ViewPageTarget.prototype.checkForWikitextWarning = function () {
|
|||
if ( text.match( /\[\[|\{\{|''|<nowiki|~~~|^==|^\*|^\#/ ) ) {
|
||||
mw.notify(
|
||||
$( $.parseHTML( ve.init.platform.getParsedMessage( 'visualeditor-wikitext-warning' ) ) )
|
||||
.filter( 'a' ).attr( 'target', '_blank ' ).end(),
|
||||
.filter( 'a' ).attr( 'target', '_blank' ).end(),
|
||||
{
|
||||
'title': ve.msg( 'visualeditor-wikitext-warning-title' ),
|
||||
'tag': 'visualeditor-wikitext-warning',
|
||||
|
|
|
@ -56,7 +56,8 @@ ve.ui.MWSaveDialog.prototype.initialize = function () {
|
|||
|
||||
// Save panel
|
||||
this.$editSummaryLabel = this.$( '<div>' ).addClass( 've-ui-mwSaveDialog-summaryLabel' )
|
||||
.html( ve.init.platform.getParsedMessage( 'summary' ) );
|
||||
.html( ve.init.platform.getParsedMessage( 'summary' ) )
|
||||
.find( 'a' ).attr( 'target', '_blank' ).end();
|
||||
this.editSummaryInput = new OO.ui.TextInputWidget(
|
||||
{ '$': this.$, 'multiline': true, 'placeholder': ve.msg( 'visualeditor-editsummary' ) }
|
||||
);
|
||||
|
@ -90,7 +91,9 @@ ve.ui.MWSaveDialog.prototype.initialize = function () {
|
|||
this.$saveFoot = this.$( '<div>' ).addClass( 've-ui-mwSaveDialog-foot' ).append(
|
||||
this.$( '<p>' ).addClass( 've-ui-mwSaveDialog-license' )
|
||||
.html( ve.init.platform.getParsedMessage( 'copyrightwarning' ) )
|
||||
.find( 'a' ).attr( 'target', '_blank' ).end()
|
||||
);
|
||||
|
||||
this.savePanel.$element.append(
|
||||
this.$editSummaryLabel,
|
||||
this.editSummaryInput.$element,
|
||||
|
@ -109,13 +112,15 @@ ve.ui.MWSaveDialog.prototype.initialize = function () {
|
|||
// Conflict panel
|
||||
this.conflictPanel = new OO.ui.PanelLayout( { '$': this.$, 'scrollable': true } );
|
||||
this.$conflict = this.$( '<div>' ).addClass( 've-ui-mwSaveDialog-conflict' )
|
||||
.html( ve.init.platform.getParsedMessage( 'visualeditor-editconflict' ) );
|
||||
.html( ve.init.platform.getParsedMessage( 'visualeditor-editconflict' ) )
|
||||
.find( 'a' ).attr( 'target', '_blank' ).end();
|
||||
this.conflictPanel.$element.append( this.$conflict );
|
||||
|
||||
// No changes panel
|
||||
this.nochangesPanel = new OO.ui.PanelLayout( { '$': this.$, 'scrollable': true } );
|
||||
this.$noChanges = this.$( '<div>' ).addClass( 've-ui-mwSaveDialog-nochanges' )
|
||||
.html( ve.init.platform.getParsedMessage( 'visualeditor-diff-nochanges' ) );
|
||||
.html( ve.init.platform.getParsedMessage( 'visualeditor-diff-nochanges' ) )
|
||||
.find( 'a' ).attr( 'target', '_blank' ).end();
|
||||
this.nochangesPanel.$element.append( this.$noChanges );
|
||||
|
||||
// Panel stack
|
||||
|
|
Loading…
Reference in a new issue