مدیاویکی:Common.js: تفاوت میان نسخه‌ها

بدون خلاصۀ ویرایش
بدون خلاصۀ ویرایش
خط ۴۷۵: خط ۴۷۵:
     }
     }
});
});
/* غیر فعال کردن راست کلیک */
/* غیر فعال کردن کپی کات کلیک */
var message="Function Disabled!";
    document.body.oncut = new Function('return false');
function clickIE4(){
    document.body.oncopy = new Function('return false');
if (event.button==2){ alert(message);
return false; } }
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){ alert(message); return false; } } }
if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; }
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4; }
document.oncontextmenu=new Function("alert(message);return false")