drcorator should be named as '<directive_name>Directive':
'use strict' .config(function config($provide) { $provide.decorator('ndTrackClickDirective', function diective($delegate) { /**@ngInject */ $delegate[0].compile = function() { // create a new link function return function(scope, el, attr) { /* Your code here*/ }; }; // remove the old link function delete $delegate[0].link; return $delegate; }); });