You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was attempting to use Joyride inside a web app, to show off new features, but like many single-page web apps, ours uses the hash fragment for navigation. E.g. site.com/#/company/123 to show the company page for the company id "1234".
After successfully got Joyride running, I now see that all the clickable actions (e.g. "next", "close", etc.) are actually <a> elements, with the href attribute containing a hash fragment. E.g. <a href="#close">X</a> for the close action.
Is there any way to override this? It looks pretty integral to Joyride, but using hash fragments effectively rules out using Joyride for web apps like ours, since they use the hash fragment for application routing.
The text was updated successfully, but these errors were encountered:
I was attempting to use Joyride inside a web app, to show off new features, but like many single-page web apps, ours uses the hash fragment for navigation. E.g.
site.com/#/company/123
to show the company page for the company id "1234".After successfully got Joyride running, I now see that all the clickable actions (e.g. "next", "close", etc.) are actually
<a>
elements, with thehref
attribute containing a hash fragment. E.g.<a href="#close">X</a>
for the close action.Is there any way to override this? It looks pretty integral to Joyride, but using hash fragments effectively rules out using Joyride for web apps like ours, since they use the hash fragment for application routing.
The text was updated successfully, but these errors were encountered: