mNo edit summary |
mNo edit summary |
||
Line 22: | Line 22: | ||
$(function() { | $(function() { | ||
var isLight = false; | var isLight = false; | ||
if (getCookie('darkTheme') == 'off') | var toggleText = 'Day theme'; | ||
if (getCookie('darkTheme') == 'off') { | |||
toggleText = 'Night theme'; | |||
isLight = true; | isLight = true; | ||
} | |||
$('#onyx-footerLinks-places').append('<li id="toggleContainer"><a id="themeToggle" href="javascript:;"> | $('#onyx-footerLinks-places').append('<li id="toggleContainer"><a id="themeToggle" href="javascript:;">' + toggleText + '</a></li>'); | ||
$('#themeToggle').click(function() { | $('#themeToggle').click(function() { |
Revision as of 14:08, February 20, 2025
// Toggle a light theme for supported dark skins
// Onyx wikis
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;
var toggleText = 'Day theme';
if (getCookie('darkTheme') == 'off') {
toggleText = 'Night theme';
isLight = true;
}
$('#onyx-footerLinks-places').append('<li id="toggleContainer"><a id="themeToggle" href="javascript:;">' + toggleText + '</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';
});
});