anti click droit

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

File diff suppressed because one or more lines are too long

View File

@ -1,24 +1,10 @@
/*!
* Sizzle CSS Selector Engine v2.3.6
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://js.foundation/
*
* Date: 2021-02-16
*/
/*!
* jQuery JavaScript Library v3.6.0
* jQuery JavaScript Library v3.7.1
* https://jquery.com/
*
* Includes Sizzle.js
* https://sizzlejs.com/
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2021-03-02T17:08Z
* Date: 2023-08-28T13:37Z
*/

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;
});
});

File diff suppressed because it is too large Load Diff