Thursday, 9 April 2020

Disable right-click in Salesforce Lightning Page



component add this:

<aura:handler name="init" value="{!this}" action="{!c.doInit}"/>

In JS file add this in doInit:

doInit : function(component, event, helper) {
       document.addEventListener('contextmenu', event => event.preventDefault());

},

No comments:

Post a Comment