I'm implementing a graph based on a cytoscape.js example from the official website(this example). The problem is that even in their example, if you click the same node twice(see the steps bellow) the qtip will be empty the second time. Here is the exact scenario:
- You click a node. The qtip with 'START' appears. You press 'start'.
- You click another node. The qtip with 'END' appears. You press 'end'.
- You click 'CLEAR'.
- You click again on the node from step 1. The qtip appears but is empty(the 'START' is not there anymore). => PROBLEM
Any idea how to fix this? I tried debugging it but I got stuck(they use a wrapper to emulate qtip2 on their elements).
Thank you.