EdiaWiki:Gadget-bhc-accessibility.js: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

25 January 2026

  • curprev 18:0318:03, 25 January 2026 Steve talk contribs 15,163 bytes +15,163 Created page with "(() => { "use strict"; // ------------------------------------------------------------------- // Cookie helpers // ------------------------------------------------------------------- const COOKIE_PREFIX = "a11y_"; function setCookie(name, value, days = 365) { const exp = new Date(); exp.setTime(exp.getTime() + days * 24 * 60 * 60 * 1000); document.cookie = `${encodeURIComponent(COOKIE_PREFIX + name)}=${encodeURIComponent(String(value))}; expires..."