Skip to content

Roll out latest changes to production #4018

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf[Getting st

https://datasheets.raspberrypi.com/pico/pico-datasheet.pdf[Raspberry Pi Pico Datasheet]:: An RP2040-based microcontroller board

https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf[Getting started with Raspberry Pi Pico]:: C/{cpp} development with Raspberry Pi Pico and other RP2040-based microcontroller boards
https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf[Getting started with Raspberry Pi Pico-series Microcontrollers]:: C/{cpp} development with Raspberry Pi Pico-series devices and other Raspberry Pi microcontroller-based boards

=== Raspberry Pi Pico 2 W

Expand Down
4 changes: 2 additions & 2 deletions jekyll-assets/_includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@
}

accept.addEventListener("click", function (e) {
document.cookie = "cookiebanner_accepted=1; max-age=" + 60 * 60 * 24 * 365 * 2;
document.cookie = "cookiebanner_accepted=1; path=/; max-age=" + 60 * 60 * 24 * 365 * 2;

if (typeof window.gtag !== "undefined") {
window.gtag("consent", "update", {
Expand All @@ -444,7 +444,7 @@
});

reject.addEventListener("click", function (e) {
document.cookie = "cookiebanner_accepted=0; max-age=" + 60 * 60 * 24 * 365 * 2;
document.cookie = "cookiebanner_accepted=0; path=/; max-age=" + 60 * 60 * 24 * 365 * 2;

cookiebanner.classList.add("__rptl-cookiebanner-hidden");
});
Expand Down