added border

This commit is contained in:
Dolan Miu
2016-03-29 04:50:23 +01:00
parent 672cbb6922
commit e2929bc3a9
6 changed files with 92 additions and 10 deletions

View File

@ -5,7 +5,9 @@ class Style {
constructor(type: string) {
this.pStyle = new Array<P>();
this.pStyle.push(new Attributes(type));
this.pStyle.push(new Attributes({
val: type
}));
}
}
@ -14,7 +16,9 @@ class Alignment {
constructor(type: string) {
this.jc = new Array<P>();
this.jc.push(new Attributes(type));
this.jc.push(new Attributes({
val: type
}));
}
}