UNPKG

landers.angular

Version:

landers.angular

17 lines 584 B
;angular.module('Landers.angular') .directive('backToReferer', ['$rootScope', function($rootScope){ return { restrict: 'A', link: function($scope, $element, $attrs){ if ($element.tag().toLowerCase() == 'a') { $element.attr('href', 'javascript:;'); } $element.on('click', function(){ if (history.length > 1) { history.back(); return false; } }); } } }])