Skip to content

Commit 8fb204a

Browse files
committed
Merge branch 't/8899'
2 parents a3a3001 + 368ed42 commit 8fb204a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ CKEditor 4 Changelog
55

66
Fixed Issues:
77

8+
* [#8899](http://dev.ckeditor.com/ticket/8899): Fixed: Links in About Dialog now open in new window/tab.
89
* [#11490](http://dev.ckeditor.com/ticket/11490): Fixed issue with menubuttons panel showing in source mode.
910
* [#11417](http://dev.ckeditor.com/ticket/11417): The [`widget.doubleclick`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget-event-doubleclick) event is not cancelled anymore after editing has been triggered.
1011
* [#11253](http://dev.ckeditor.com/ticket/11253): [IE] Fixed: Clipped upload button in [Enhanced Image](http://ckeditor.com/addon/image2) dialog.

plugins/about/dialogs/about.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@ CKEDITOR.dialog.add( 'about', function( editor ) {
5353
'<div class="cke_about_logo"></div>' +
5454
'<p>' +
5555
'CKEditor ' + CKEDITOR.version + ' (revision ' + CKEDITOR.revision + ')<br>' +
56-
'<a href="http://ckeditor.com/">http://ckeditor.com</a>' +
56+
'<a target="_blank" href="http://ckeditor.com/">http://ckeditor.com</a>' +
5757
'</p>' +
5858
'<p>' +
59-
lang.help.replace( '$1', '<a href="http://docs.ckeditor.com/user">' + lang.userGuide + '</a>' ) +
59+
lang.help.replace( '$1', '<a target="_blank" href="http://docs.ckeditor.com/user">' + lang.userGuide + '</a>' ) +
6060
'</p>' +
6161
'<p>' +
6262
lang.moreInfo + '<br>' +
63-
'<a href="http://ckeditor.com/about/license">http://ckeditor.com/about/license</a>' +
63+
'<a target="_blank" href="http://ckeditor.com/about/license">http://ckeditor.com/about/license</a>' +
6464
'</p>' +
6565
'<p>' +
66-
lang.copy.replace( '$1', '<a href="http://cksource.com/">CKSource</a> - Frederico Knabben' ) +
66+
lang.copy.replace( '$1', '<a target="_blank" href="http://cksource.com/">CKSource</a> - Frederico Knabben' ) +
6767
'</p>' +
6868
'</div>'
6969
}

0 commit comments

Comments
 (0)