Resolved issues #789, #1021, #1031.

This commit is contained in:
Rossen Hristov
2015-11-03 16:12:59 +02:00
parent 0ff96c72fd
commit e7c4209112
12 changed files with 179 additions and 34 deletions

View File

@ -1112,4 +1112,12 @@ export class View extends proxy.ProxyObject implements definition.View {
animation.target = that;
return new animationModule.Animation([animation]);
}
public toString(): string {
if (this.id) {
return this.typeName + `<${this.id}>`;
}
return this.typeName;
}
}