The ngCopy directive specifies behavior to be run on a copy event.
<p ng-copy="blockCopy($event)">This paragraph cannot be copied</p> In the controller
$scope.blockCopy = function(event) { event.preventDefault(); console.log("Copying won't work"); }