MediaWiki:Vector.js: различия между версиями

Нет описания правки
Метка: отменено
Нет описания правки
Метка: отменено
Строка 1: Строка 1:
$(document).ready(function() {
jQuery(document).ready(function($) {
   var button = document.createElement("button");
   var isLightTheme = localStorage.getItem("isLightTheme");
  button.innerHTML = "Сменить тему";
  button.className = "theme-button";
  button.onclick = toggleTheme;


   var container = document.getElementById("p-personal");
   if (isLightTheme === "true") {
  if (container) {
      $("html").addClass("light");
      container.parentNode.insertBefore(button, container);
   }
   }


   var isLightTheme = localStorage.getItem("isLightTheme");
   var button = $('<button class="theme-button">Сменить тему</button>');
   if (isLightTheme === "true") {
 
       document.documentElement.classList.add('light');
   button.click(function() {
   } else {
      $("html").toggleClass("light");
      document.documentElement.classList.remove('light');
      var isLightTheme = $("html").hasClass("light");
  }
       localStorage.setItem("isLightTheme", isLightTheme);  
   });
 
  $("#p-personal").before(button);
});
});
function toggleTheme() {
  var isLightTheme = document.documentElement.classList.toggle('light');
  localStorage.setItem("isLightTheme", isLightTheme);
}

Версия от 16:42, 4 мая 2024

jQuery(document).ready(function($) {
  var isLightTheme = localStorage.getItem("isLightTheme");

  if (isLightTheme === "true") {
      $("html").addClass("light");
  }

  var button = $('<button class="theme-button">Сменить тему</button>');

  button.click(function() {
      $("html").toggleClass("light");
      var isLightTheme = $("html").hasClass("light"); 
      localStorage.setItem("isLightTheme", isLightTheme); 
  });

  $("#p-personal").before(button);
});