anti click droit

This commit is contained in:
2024-06-04 09:41:43 +02:00
parent f91f3aee77
commit 105533fb2d
4 changed files with 2739 additions and 12605 deletions

View File

@@ -571,4 +571,28 @@ if($(".programme-878").length > 0){
});
}
});
jQuery(document).ready(function () {
//Disable cut copy paste
jQuery('body').bind('cut copy paste', function (e) {
e.preventDefault();
});
//Disable mouse right click
jQuery("body").on("contextmenu",function(e){
return false;
});
});