(function () { "use strict"; angular.module('shared') .directive('preventDefaultClick', function () { return function (scope, element, attrs) { $j(element).click(function (event) { event.preventDefault(); }); }; }); })();