Merge pull request #3212 from node-red/fix-tour-guide-width

Ensure tourGuide popover doesn't fall offscreen
This commit is contained in:
Nick O'Leary 2021-10-22 09:26:31 +01:00 committed by GitHub
commit 42a9da006e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -348,7 +348,12 @@ RED.tourGuide = (function() {
maxWidth: maxWidth+"px",
direction: direction,
})
setTimeout(function() {
var pos = popover.element.position()
if (pos.left < 0) {
popover.element.css({left: 0});
}
},100);
if (nextButton) {
setTimeout(function() {
nextButton.focus();