We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
c250f70 broke the DND for me.
It introduced the search for
find(">span.fancytree-title")
on the node.
However, my node is customized a bit and the fancytree-title class isn't a direct child, but one level down. So it throws errors when dragging.
I made it work by changing these lines https://github.com/mar10/fancytree/blob/master/src/jquery.fancytree.dnd.js#L309 https://github.com/mar10/fancytree/blob/master/src/jquery.fancytree.dnd5.js#L165
to:
$targetTitle = $target.find("span.fancytree-title");
effectively removing the >
Could this be considered to be implemented?
The text was updated successfully, but these errors were encountered:
Sure. Would you like to submit a PR?
Sorry, something went wrong.
Submitted #706
Thank you, Martin.
Successfully merging a pull request may close this issue.
c250f70 broke the DND for me.
It introduced the search for
on the node.
However, my node is customized a bit and the fancytree-title class isn't a direct child, but one level down. So it throws errors when dragging.
I made it work by changing these lines
https://github.com/mar10/fancytree/blob/master/src/jquery.fancytree.dnd.js#L309
https://github.com/mar10/fancytree/blob/master/src/jquery.fancytree.dnd5.js#L165
to:
effectively removing the >
Could this be considered to be implemented?
The text was updated successfully, but these errors were encountered: