apollo_developers/assets/js/directives/empty-links.js
venbatechnologies@gmail.com 1809bcf9c9 fixed table for student details
2018-04-23 18:34:11 +05:30

16 lines
398 B
JavaScript
Executable File

'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();
});
}
}
};
});