Skip to content

Commit

Permalink
Merge pull request #254 from aopell/develop
Browse files Browse the repository at this point in the history
Version 7.2 missing features
  • Loading branch information
aopell authored Mar 3, 2021
2 parents 5d70301 + f9f68f0 commit cceac1c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,8 @@ let modals = [
createElement("a", [], { href: "https://github.com/Roguim", textContent: "@Roguim" }),
createElement("span", [], { textContent: ", " }),
createElement("a", [], { href: "https://github.com/reteps", textContent: "Peter Stenger (@reteps)" }),
createElement("span", [], { textContent: ", " }),
createElement("a", [], { href: "https://github.com/EricPedley", textContent: "Eric Pedley (@EricPedley)" }),
createElement("span", [], { textContent: ", and " }),
createElement("a", [], { href: "https://github.com/KTibow", textContent: "@KTibow" }),
]),
Expand Down Expand Up @@ -1076,7 +1078,7 @@ async function createQuickAccess() {

let quickLink = Setting.getNestedValue("courseQuickLinks", section.id);
if(quickLink && quickLink !== "") {
courseIconsContainer.prepend(createElement("a", ["icon", "icon-quicklink", "splus-track-clicks"], { href: quickLink, title: "Quick Link", dataset: { splusTrackingTarget: "quick-access-quicklink-link", splusTrackingLabel: "Quick Access" } }))
courseIconsContainer.prepend(createElement("a", ["icon", "icon-quicklink", "splus-track-clicks"], { href: quickLink, title: `Quick Link \n(${quickLink})`, dataset: { splusTrackingTarget: "quick-access-quicklink-link", splusTrackingLabel: "Quick Access" } }))
}

iconImage.style.backgroundImage = `url(${chrome.runtime.getURL("imgs/fallback-course-icon.svg")})`;
Expand Down

0 comments on commit cceac1c

Please sign in to comment.