AIADirectives.js
1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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',
}
});
AIA.directive('adamImageDirective', function (ModuleService) {
return {
//restrict: 'E',
templateUrl: 'app/views/ai/adam-images-detail.html',
}
});
AIA.directive('labExerciseDirective', function (ModuleService) {
return {
//restrict: 'E',
templateUrl: 'app/views/LabExerc/lab-exercise-view.html',
}
});
AIA.directive('myPictureDirective', function (ModuleService) {
return {
//restrict: 'E',
templateUrl: 'app/views/MyPicture/MyPicture.html',
}
});