Skip to content

Commit

Permalink
update wins.js so the Wins page uses icon-github.svg
Browse files Browse the repository at this point in the history
  • Loading branch information
izma-mujeeb committed Oct 8, 2024
1 parent 803cbb7 commit cf6a2aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions assets/images/wins-page/icon-github-small.svg

This file was deleted.

4 changes: 2 additions & 2 deletions assets/js/wins.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@
const cardTemplate = document.getElementById("wins-card-template");
const QUOTE_ICON_PATH = '/assets/images/wins-page/quote-icon.svg'
const AVATAR_DEFAULT_PATH = "/assets/images/wins-page/avatar-default.svg"
const GITHUB_ICON = '/assets/images/wins-page/icon-github-small.svg';
const GITHUB_ICON = '_includes/svg/icon-github.svg';
const LINKEDIN_ICON = '/assets/images/wins-page/icon-linkedin-small.svg'
const winsCardContainer = document.querySelector('#responses');

Expand Down Expand Up @@ -506,7 +506,7 @@ function changeSeeMoreBtn(x) {
if (data[i][linkedin_url].length > 0) {
makeIcon(data[i][linkedin_url], overlayIcons, 'linkedin-icon', '/assets/images/wins-page/icon-linkedin-small.svg', 'LinkedIn profile for ' + data[i][name]);
} if (data[i][github_url].length > 0) {
makeIcon(data[i][github_url], overlayIcons, 'github-icon', '/assets/images/wins-page/icon-github-small.svg', 'Github profile for ' + data[i][name]);
makeIcon(data[i][github_url], overlayIcons, 'github-icon', '_includes/svg/icon-github.svg', 'Github profile for ' + data[i][name]);
}

const overlayName = document.querySelector('#overlay-name');
Expand Down

0 comments on commit cf6a2aa

Please sign in to comment.