mNo edit summary |
mNo edit summary |
||
Line 23: | Line 23: | ||
if (getCookie('darkTheme') == 'off') | if (getCookie('darkTheme') == 'off') | ||
isLight = true; | isLight = true; | ||
$('#onyx-footerLinks-places').append('<li id="toggleContainer"><a id="themeToggle" href="javascript:;">Toggle night theme</a></li>'); | $('#onyx-footerLinks-places').append('<li id="toggleContainer"><a id="themeToggle" href="javascript:;">Toggle night theme</a></li>'); | ||
$('#themeToggle').click(function() { | $('#themeToggle').click(function() { | ||
if (isLight) | if (isLight) |
Revision as of 13:30, February 20, 2025
// Toggle a light theme for supported dark skins
function setCookie(c_name, value, expiredays) {
var exdate = new Date();
exdate.setDate(exdate.getDate() + expiredays);
document.cookie = c_name + '=' + escape(value) + ';path=/' + ((expiredays === null) ? '' : ';expires=' + exdate.toGMTString());
}
function getCookie(c_name) {
if (document.cookie.length > 0) {
c_start = document.cookie.indexOf(c_name + '=');
if (c_start != -1) {
c_start = c_start + c_name.length + 1;
c_end = document.cookie.indexOf(';', c_start);
if (c_end == -1) c_end = document.cookie.length;
return unescape(document.cookie.substring(c_start, c_end));
}
}
return '';
}
$(function() {
var isLight = false;
if (getCookie('darkTheme') == 'off')
isLight = true;
$('#onyx-footerLinks-places').append('<li id="toggleContainer"><a id="themeToggle" href="javascript:;">Toggle night theme</a></li>');
$('#themeToggle').click(function() {
if (isLight)
setCookie('darkTheme', '', -1);
else
setCookie('darkTheme', 'off', 999);
if (mw.config.get('wgUserId') || location.href.includes('?'))
location.reload();
else
location = location.href + '?toggle';
});
});