blob: ffa618cb81f2a9b12be416ed86c642f7b5188072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
'use strict';
/* http://docs-next.angularjs.org/api/angular.module.ng.$compileProvider.directive */
angular.module('Alias.directives', []).
directive('navTabs', function($log) {
var directiveDefinition = {
restrict: 'C',
link: function(scope, elm, attrs) {
elm.on('click', function(event) {
event.preventDefault();
});
}
};
return directiveDefinition;
});
|