I have successfully setup a multipage tour with intro.js In the final step I can't have the 'Done' button displayed. I currently have a button going to the home page. How could I also add the 'Done' button?
The script in the final page (only containing the last step of the tour):
$(document).ready(function() {
areComponentsReady();
if(window.location.href.indexOf("multipage=true") > -1) {
introJs().setOption('doneLabel', 'Back to start').start().oncomplete(function() {
window.location.href = "/myhomepage"
});
}
});