treant-js icon indicating copy to clipboard operation
treant-js copied to clipboard

Need Node mouseover event support

Open jeyavelnkl opened this issue 7 years ago • 0 comments

It's nice library for creating the Org-chart.

i want to display the popup box(mouseover box) while doing Node mouseover event.

Node Mouseover not working if i am writing like below

$(".node").mouseover(function(e){ if (e.target.classList.value !== "collapse-switch" && !$(this).data('clicked')){ $(this).children(".node-desc").show(); } });

jeyavelnkl avatar Oct 12 '17 14:10 jeyavelnkl