()
| 41 | function showTooltipFor(e, content, node) { |
| 42 | var tooltip = showTooltip(e, content); |
| 43 | function hide() { |
| 44 | CodeMirror.off(node, "mouseout", hide); |
| 45 | if (tooltip) { hideTooltip(tooltip); tooltip = null; } |
| 46 | } |
| 47 | var poll = setInterval(function() { |
| 48 | if (tooltip) for (var n = node;; n = n.parentNode) { |
| 49 | if (n && n.nodeType == 11) n = n.host; |
no test coverage detected