Fix tooltip positioning for left edge

This commit is contained in:
Dmitry-Ilyushechkin
2025-11-11 17:14:21 +03:00
parent 3c90588147
commit 6f877d8a61

View File

@ -213,6 +213,9 @@ define([
var width = this.cmpEl.width();
if (left+width>Common.Utils.innerWidth())
left = Common.Utils.innerWidth() - width - 10;
if (left < 10)
left = 10;
left = (left + 'px');
} else
left = 'auto';