A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
399 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. } else {
  8. details.style.display = "none";
  9. link.innerHTML = "Show details:";
  10. }
  11. }