2016-03-16 18:01:33 +02:00
|
|
|
(function(app) {
|
|
|
|
|
2016-11-13 14:09:28 -08:00
|
|
|
// #docregion
|
|
|
|
app.HeroDIInjectComponent = HeroDIInjectComponent;
|
|
|
|
|
|
|
|
HeroDIInjectComponent.annotations = [
|
|
|
|
new ng.core.Component({
|
|
|
|
selector: 'hero-di-inject',
|
|
|
|
template: '<h1>Hero: {{name}}</h1>'
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
HeroDIInjectComponent.parameters = [ 'heroName' ];
|
|
|
|
|
|
|
|
function HeroDIInjectComponent(name) {
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
// #enddocregion
|
2016-10-13 17:59:00 +01:00
|
|
|
|
2016-03-16 18:01:33 +02:00
|
|
|
})(window.app = window.app || {});
|
|
|
|
|
2016-11-13 14:09:28 -08:00
|
|
|
/////// DSL version ////////
|
|
|
|
|
2016-03-16 18:01:33 +02:00
|
|
|
(function(app) {
|
2016-11-13 14:09:28 -08:00
|
|
|
|
|
|
|
// #docregion dsl
|
|
|
|
app.HeroDIInjectDslComponent = ng.core.Component({
|
|
|
|
selector: 'hero-di-inject-dsl',
|
|
|
|
template: '<h1>Hero: {{name}}</h1>'
|
|
|
|
})
|
|
|
|
.Class({
|
|
|
|
constructor: [
|
|
|
|
new ng.core.Inject('heroName'),
|
|
|
|
function HeroDIInjectDslComponent(name) {
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
// #enddocregion dsl
|
2016-03-16 18:01:33 +02:00
|
|
|
|
|
|
|
})(window.app = window.app || {});
|