BUGFIX Checking for node existence in get_text() for jquery.jstree.js

This commit is contained in:
Ingo Schommer 2011-03-03 08:37:05 +13:00
parent 4b1b7d4ec7
commit 135cb1cc94
1 changed files with 1 additions and 1 deletions

View File

@ -808,7 +808,7 @@
}
else {
obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
return obj.nodeValue;
return obj ? obj.nodeValue : '';
}
},
set_text : function (obj, val) {