Merge pull request #1997 from oldbig/bugfix/tooltip_wrong_position
bugfix/tooltip_wrong_position: fixedpull/2305/head
commit
0d70b500e8
|
@ -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