11 lines
286 B
JavaScript
11 lines
286 B
JavaScript
angular.module('baggageExample', [])
|
|
.directive('myDirective', function() {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: require('./my-directive.html'),
|
|
link: function(scope) {
|
|
scope.foo = 'world';
|
|
}
|
|
}
|
|
});
|