fperucic / treant-js

Treant.js - javascript library for drawing tree diagrams
MIT License
864 stars 314 forks source link

Need Node mouseover event support #88

Open jeyavelnkl opened 7 years ago

jeyavelnkl commented 7 years ago

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(); } });