Merge branch 'alpha50' into css-refactor

This commit is contained in:
Adam Bradley
2015-12-09 07:47:30 -06:00
27 changed files with 71 additions and 49 deletions

View File

@@ -42,14 +42,14 @@ export class IdRef {
/**
* @private
*/
onInit() {
ngOnInit() {
this.app.register(this.id, this.component);
}
/**
* @private
*/
onDestroy() {
ngOnDestroy() {
this.app.unregister(this.id);
}
}
@@ -75,7 +75,7 @@ export class Attr {
/**
* @private
*/
onInit() {
ngOnInit() {
this.renderer.setElementAttribute(this.elementRef, this.attr, '');
}
}