Skip to content

Commit

Permalink
Merge pull request #17172 from ckeditor/ck/update-powered-by-link
Browse files Browse the repository at this point in the history
Feature (ui): Update powered-by link.
  • Loading branch information
Mati365 authored Sep 27, 2024
2 parents 52b5183 + 5de7d3d commit 5c02fd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ckeditor5-ui/src/editorui/poweredby.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ class PoweredByView extends View<HTMLDivElement> {
{
tag: 'a',
attributes: {
href: 'https://ckeditor.com/?utm_source=ckeditor&' +
href: 'https://ckeditor.com/powered-by-ckeditor/?utm_source=ckeditor&' +
'utm_medium=referral&utm_campaign=701Dn000000hVgmIAE_powered_by_ckeditor_logo',
target: '_blank',
tabindex: '-1'
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-ui/tests/editorui/poweredby.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ describe( 'PoweredBy', () => {
} );

it( 'should have a link that opens in a new tab', () => {
const link = 'https://ckeditor.com/?utm_source=ckeditor&utm_medium=referral' +
const link = 'https://ckeditor.com/powered-by-ckeditor/?utm_source=ckeditor&utm_medium=referral' +
'&utm_campaign=701Dn000000hVgmIAE_powered_by_ckeditor_logo';
expect( view.element.firstChild.tagName ).to.equal( 'A' );
expect( view.element.firstChild.href ).to.equal( link );
Expand Down

0 comments on commit 5c02fd7

Please sign in to comment.