Backed up Walmart Supplier's templates. Downloaded BuilderTrend's as well as they have just been assigned to me.

This commit is contained in:
Norm Rasmussen
2024-12-20 13:32:45 -05:00
parent c1d4234407
commit 60a55e60ae
150 changed files with 7019 additions and 169 deletions

View File

@ -8,4 +8,20 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.css" integrity="sha512-wR4oNhLBHf7smjy0K4oqzdWumd+r5/+6QO/vDda76MW5iug4PT7v86FoEkySIJft3XA0Ae6axhIvHrqwm793Nw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js" type="text/javascript"></script>
<script>
function changeTranscriptPageText() {
if (window.location.pathname == "/app/transcript") {
const heading = document.querySelector('.Transcript_Caption');
const subHeading = document.querySelector('.Transcript_SchoolName');
subHeading.style.color = "#fff";
heading.style.color = "#fff";
heading.innerText = "Transcript";
}
}
addEventListener("DOMContentLoaded", (event) => {
changeTranscriptPageText();
});
</script>