mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX Checking for node existence in get_text() for jquery.jstree.js
This commit is contained in:
parent
4b1b7d4ec7
commit
135cb1cc94
2
thirdparty/jstree/jquery.jstree.js
vendored
2
thirdparty/jstree/jquery.jstree.js
vendored
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user