Lines Matching refs:tip
1414 var tip = document.getElementById('ann-tooltip');
1415 if (tip && tip.contains(e.target)) {
1479 var tip = document.createElement('div');
1480 tip.id = 'ann-tooltip';
1481 tip.className = CLS_TOOLTIP;
1504 tip.appendChild(btn);
1506 document.body.appendChild(tip);
1511 tip.style.top = (rect.bottom + scrollTop + 6) + 'px';
1512 tip.style.left = (rect.left + scrollLeft) + 'px';
1519 var tip = document.getElementById('ann-tooltip');
1520 if (tip && tip.parentNode) {
1521 tip.parentNode.removeChild(tip);