Further investigation shows that this fault relates to the following function in FlyTreeView.htc:
function o55(str) {
str = str.replace(/%/g, "%25");
str = str.replace(/ /g, "%20");
return str;
}
This function appears to be called twice for each displayed node. The first time it is called, str is undefined. The second time, str is set to the key of the node. It is causing the javascript error when str is undefined.
Can I expect a fix for this?