From 6e4334ee2925cb23115b2e72a09383686bdf38cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Mon, 16 May 2011 12:36:17 +0100 Subject: [PATCH] Fix Size#toString(). --- src/basic/Size.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/basic/Size.js b/src/basic/Size.js index 8d05abe4..420c7620 100644 --- a/src/basic/Size.js +++ b/src/basic/Size.js @@ -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: {