Fix isEmpty for TextItems.

Closes #133.
This commit is contained in:
Jürg Lehni 2012-12-18 05:29:03 +01:00
parent 9022bb232b
commit 15824e7aaf

View file

@ -93,7 +93,7 @@ var TextItem = this.TextItem = Item.extend(/** @lends TextItem# */{
}, },
isEmpty: function() { isEmpty: function() {
return !!this._content; return !this._content;
}, },
/** /**