A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

17 righe
561 B

  1. function copyvio_toggle_details(details) {
  2. link = document.getElementById("cv-result-detail-link");
  3. details = document.getElementById("cv-result-detail");
  4. if (link.innerHTML == "Show details:") {
  5. details.style.display = "block";
  6. link.innerHTML = "Hide details:";
  7. set_cookie("EarwigCVShowDetails", "True", 1095);
  8. } else {
  9. details.style.display = "none";
  10. link.innerHTML = "Show details:";
  11. if (get_cookie("EarwigCVShowDetails")) {
  12. delete_cookie("EarwigCVShowDetails");
  13. }
  14. }
  15. }