apollodec/Apollo/assets/js/directives/empty-links.js
saravanakumar_kandasami 7d72a0b91a updated code
2017-11-21 14:56:39 +05:30

16 lines
398 B
JavaScript

'use strict';
/**
* Prevent default action on empty links.
*/
app.directive('a', function () {
return {
restrict: 'E',
link: function (scope, elem, attrs) {
if (attrs.ngClick || attrs.href === '' || attrs.href === '#') {
elem.on('click', function (e) {
e.preventDefault();
});
}
}
};
});