fix modal animations

This commit is contained in:
Adam Bradley
2015-06-20 23:02:00 -05:00
parent a979403b0d
commit 8d2a0b1d60
6 changed files with 82 additions and 64 deletions

View File

@@ -53,12 +53,6 @@ export class Aside {
}
onInit() {
this.side = this.side || 'left';
this.type = this.type || 'reveal';
this.domElement.setAttribute('side', this.side);
this.domElement.setAttribute('type', this.type);
console.log('Aside content', this.content);
this.contentElement = (this.content instanceof Node) ? this.content : this.content.domElement;