2009-11-03 Tobias Liebig <mail_typo3@etobi.de>
* Fixed bug #9513: t3editor bad line numbering
+ * Fixed bug #12409: t3editor/codecompletion objects still showed up after deleting
2009-11-03 Ernesto Baschny <ernst@cron-it.de>
var value = currentTsTreeNode.getValue();
// first get the childNodes of the Node (=properties defined by the user)
for (key in childNodes) {
- if (typeof(childNodes[key].value) != "undefined") {
+ if (typeof(childNodes[key].value) != "undefined" && childNodes[key].value != null) {
propObj = new Object();
propObj.word = key;
if(tsRef.typeHasProperty(value,childNodes[key].name)){