6 lines
160 B
JavaScript
6 lines
160 B
JavaScript
|
app.directive('atDirective', ['$http', 'config', function ($http, config) {
|
||
|
return {
|
||
|
templateUrl: config.rootPath+ 'templates/at.html',
|
||
|
};
|
||
|
}]);
|