flot.tooltip icon indicating copy to clipboard operation
flot.tooltip copied to clipboard

tooltip does not show up in iframe

Open kenkang20 opened this issue 7 years ago • 0 comments

I am working on a legacy system which has many iframe using top frame's jQuery object. In a iframe page, the plot tooltip plugin is called, but tooltip doesn't show up because of follows.

$tip.appendTo('body').hide().css({position: 'absolute'}); 'body' always means top frame's body instead of current iframe's body, so I have figured it out by this change

$tip.appendTo($('body')).hide().css({position: 'absolute'});

kenkang20 avatar Mar 05 '18 21:03 kenkang20