11 lines
286 B
JavaScript
Raw Normal View History

2020-05-19 11:43:42 +03:00
angular.module('baggageExample', [])
.directive('myDirective', function() {
return {
restrict: 'E',
templateUrl: require('./my-directive.html'),
link: function(scope) {
scope.foo = 'world';
}
}
});