-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
treeTable allows user defined child prefixes but uses the fixed length of 9 from the default:
function parentOf(node) {
var classNames = node[0].className.split(' ');
-
+
for(key in classNames) {
if(classNames[key].match(options.childPrefix)) {
- return $("#" + classNames[key].substring(9));
+ return $("#" + classNames[key].substring(options.childPrefix.length));
}
}
};Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels