4images Forum & Community

4images Modifications / Modifikationen => Templates & Styles (Requests & Discussions) => Topic started by: eddyman1us on January 16, 2007, 04:22:18 PM

Title: removing right click restriction for 1.7.4
Post by: eddyman1us on January 16, 2007, 04:22:18 PM
Hi , all I tried using the right click disable remover post in the FAQ but was unable to get it work on 1.7.4 any ideas how to remove right click restriction for 1.7.4  :?
Title: Re: removing right click resitriction for 1.7.4
Post by: Acidgod on January 16, 2007, 04:56:28 PM
del this in the header.html
Code: [Select]
  function right(e) {
    if ((document.layers || (document.getElementById && !document.all)) && (e.which == 2 || e.which == 3)) {
      alert("© Copyright by {site_name}");
      return false;
    }
    else if (event.button == 2 || event.button == 3) {
      alert("© Copyright by {site_name}");
      return false;
    }
    return true;
  }

  if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown = right;
  }
  else if (document.all && !document.getElementById){
    document.onmousedown = right;
  }

document.oncontextmenu = new Function("alert('© Copyright by {site_name}');return false");