fix(project): 호버 툴팁을 커서 위쪽 가운데로
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -4440,8 +4440,8 @@
|
||||
document.body.appendChild(tipEl);
|
||||
}
|
||||
tipEl.textContent = text;
|
||||
tipEl.style.left = (x + 14) + "px";
|
||||
tipEl.style.top = (y + 18) + "px";
|
||||
tipEl.style.left = x + "px";
|
||||
tipEl.style.top = (y - 10) + "px";
|
||||
tipEl.hidden = false;
|
||||
}
|
||||
function hide() { if (tipEl) tipEl.hidden = true; }
|
||||
|
||||
Reference in New Issue
Block a user