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
b5d2e10d41
commit
a00ccead8f
2
thirdparty/jstree/jquery.jstree.js
vendored
2
thirdparty/jstree/jquery.jstree.js
vendored
@ -806,7 +806,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