From 15824e7aaf0d0e150f19bc63abf972771e45147a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Tue, 18 Dec 2012 05:29:03 +0100 Subject: [PATCH] Fix isEmpty for TextItems. Closes #133. --- src/text/TextItem.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text/TextItem.js b/src/text/TextItem.js index 56c31356..d9eb404a 100644 --- a/src/text/TextItem.js +++ b/src/text/TextItem.js @@ -93,7 +93,7 @@ var TextItem = this.TextItem = Item.extend(/** @lends TextItem# */{ }, isEmpty: function() { - return !!this._content; + return !this._content; }, /**