MediaWiki:Common.js
From Zezenia Online Wiki
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */ var css = document.createElement("link"); css.rel = "stylesheet"; css.type = "text/css"; css.href = "https://www.playzezenia.com/cdn/styles/cookieconsent.css"; document.head.appendChild(css); var script = document.createElement("script"); script.src = "https://www.playzezenia.com/cdn/scripts/cookieconsent.js"; script.async = true; script.onload = function() { window.cookieconsent.initialise({ palette: { popup: { background: "#000", text: "#ececec" }, button: { background: "#fff", text: "#000" } }, content: { message: "Zezenia Online uses cookies to log you in and improve our services.", dismiss: "I agree", link: "Privacy Policy", href: "https://www.playzezenia.com/home/legal#2", }, cookie: { domain: "." + document.domain.split('.').reverse().splice(0, 2).reverse().join('.'), }, }); } document.body.appendChild(script);