AIADirectives.js
869 Bytes
AIA.directive('daDirective', function () {
return {
templateUrl: 'app/views/da/da-body-view.html'
};
});
AIA.directive('atlasAnatomyDirective', function (ModuleService) {
return {
//restrict: 'E',
templateUrl: 'app/views/aa/module-item-view.html',
}
});
AIA.directive('clinicalIllustrationDirective', function (ModuleService) {
return {
//restrict: 'E',
templateUrl: 'app/views/ci/clinical-illustrations-detail.html',
}
});
AIA.directive('clinicalAnimationDirective', function (ModuleService) {
return {
//restrict: 'E',
templateUrl: 'app/views/ca/clinical-animations-detail.html',
}
});
AIA.directive('threedAnatomyDirective', function (ModuleService) {
return {
//restrict: 'E',
templateUrl: 'app/views/3dA/3d-anatomy-details.html',
}
});