fortesinformatica / Sideshow

Sideshow is a powerful javascript library which aims to reduce your user's learning curve by providing a way to create step-by-step interactive tours. Explain the features of your application, control your end-user's interaction with your UI, emphasize what you're explaining in each step by masking it. Just think! The sky is the limit!
http://fortesinformatica.github.io/Sideshow
Apache License 2.0
86 stars 31 forks source link

Positioning of arrows #11

Closed DanielApt closed 9 years ago

DanielApt commented 9 years ago

This addresses #4 and #9.

You can now position the targets arrow(s) by adding the arrowPosition property to a step. A step will now look like:

{
    title: 'Highlight elements',
    text: 'Look, this arrow is on the right of the element!',
    subject: 'nav.main',
    targets: 'nav.main .search',
    arrowPosition: 'right' // this is a new feature
}