I have a little directive and I have troubles to make it working.
here is my directive :
angular
.module('thermofluor')
.directive('myCustomer', function() {
return {
restrict: 'E',
template: 'table_plate.html'
};
});
The template is just a paragraph with "Test" inside.
In my main HTML in call the directive with this :
<my-customer></my-customer>
but nothing appear on the screen, and in the html the directive is not replace with the directives output html
The template have the same name and is in the same folder.
What am I doing wrong ?
Thanks.