bugfix/tooltip_wrong_position: fixed
parent
f9bca655e5
commit
4601db2ac1
|
@ -132,6 +132,10 @@ function align(el) {
|
|||
alignTop(el);
|
||||
if (isOutOfBounds(el)) {
|
||||
alignBottom(el);
|
||||
|
||||
if (isOutOfBounds(el)) {
|
||||
alignTop(el);
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (modifiers.left) {
|
||||
|
@ -144,6 +148,10 @@ function align(el) {
|
|||
|
||||
if (isOutOfBounds(el)) {
|
||||
alignBottom(el);
|
||||
|
||||
if (isOutOfBounds(el)) {
|
||||
alignLeft(el);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -152,6 +160,10 @@ function align(el) {
|
|||
alignBottom(el);
|
||||
if (isOutOfBounds(el)) {
|
||||
alignTop(el);
|
||||
|
||||
if (isOutOfBounds(el)) {
|
||||
alignBottom(el);
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
@ -164,6 +176,10 @@ function align(el) {
|
|||
|
||||
if (isOutOfBounds(el)) {
|
||||
alignBottom(el);
|
||||
|
||||
if (isOutOfBounds(el)) {
|
||||
alignRight(el);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue