Fix Size#toString().

This commit is contained in:
Jürg Lehni 2011-05-16 12:36:17 +01:00
parent f545805786
commit 6e4334ee29

View file

@ -96,8 +96,8 @@ var Size = this.Size = Base.extend({
toString: function() {
var format = Base.formatNumber;
return '{ x: ' + format(this.width)
+ ', y: ' + format(this.height) + ' }';
return '{ width: ' + format(this.width)
+ ', height: ' + format(this.height) + ' }';
},
statics: {