We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you attach an onboarding step to an item in the lower right part of the display, it won't be positioned correctly. For example:
"attachTo": "button[title=Mute]", "highlight": "button[title=Mute]"
Will highlight correctly, but will position the tip in the top left part of the display.
To work around it, you need to do something like:
"attachTo": "button[title=Mute]", "position": "top", "highlight": "button[title=Mute]", "xOffset": -435
The positioning logic (https://github.com/ngageoint/opensphere/blob/master/src/os/ui/onboarding/ngonboarding.js#L288) appears fairly complicated. It would be nice to have fewer options (or at least less interdependence between the options), although this would need to consider existing out-of-tree users of onboarding.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you attach an onboarding step to an item in the lower right part of the display, it won't be positioned correctly. For example:
Will highlight correctly, but will position the tip in the top left part of the display.
To work around it, you need to do something like:
The positioning logic (https://github.com/ngageoint/opensphere/blob/master/src/os/ui/onboarding/ngonboarding.js#L288) appears fairly complicated. It would be nice to have fewer options (or at least less interdependence between the options), although this would need to consider existing out-of-tree users of onboarding.
The text was updated successfully, but these errors were encountered: