Skip to content

Commit

Permalink
Updated the order
Browse files Browse the repository at this point in the history
  • Loading branch information
teshukatepalli1 committed Nov 21, 2023
1 parent 8c7541f commit 62f6336
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion blocks/social-share/social-share.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function createShareButton(network, url, title) {
}

function renderShareButtons(container, url, title) {
const networks = ['twitter', 'linkedin', 'facebook'];
const networks = ['twitter', 'facebook', 'linkedin'];
const list = document.createElement('ul');
list.className = 'hs-blog-social-share-list';

Expand Down
2 changes: 1 addition & 1 deletion templates/Blog/Blog.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ function createShareButton(network, url, title) {
}

function renderShareButtons(container, url, title) {
const networks = ['twitter', 'linkedin', 'facebook'];
const networks = ['twitter', 'facebook', 'linkedin'];
const list = document.createElement('ul');
list.className = 'hs-blog-social-share-list';

Expand Down
2 changes: 1 addition & 1 deletion templates/News/News.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ function createShareButton(network, url, title) {
}

function renderShareButtons(container, url, title) {
const networks = ['twitter', 'linkedin', 'facebook'];
const networks = ['twitter', 'facebook', 'linkedin'];
const list = document.createElement('ul');
list.className = 'hs-blog-social-share-list';

Expand Down

0 comments on commit 62f6336

Please sign in to comment.