16 lines
398 B
JavaScript
Executable File
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();
|
|
});
|
|
}
|
|
}
|
|
};
|
|
}); |