added more styles

This commit is contained in:
Dolan Miu
2016-05-10 00:32:00 +01:00
parent 80661ac551
commit 11fa77edc0
5 changed files with 92 additions and 39 deletions

View File

@ -27,4 +27,12 @@ export class Styles extends XmlComponent {
push(style: XmlComponent): void {
this.root.push(style);
}
clearVariables() {
console.log(this);
console.log(this.root);
this.root.forEach(element => {
element.clearVariables();
})
}
}