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