Added "Previous" button to the end of the tour.

(Small Change)
This commit is contained in:
Milo 2019-08-01 19:37:38 +01:00
parent 63bc4e536d
commit d2f45412a0
1 changed files with 22 additions and 19 deletions

View File

@ -121,7 +121,10 @@ class Tour {
this.tour.addStep("complete", {
text: "Tour complete!\nIf you need any additional assistance, let us know :-)",
buttons: [{ text: "Done", action: this.tour.next }]
buttons: [
{ text: "Previous", action: this.tour.back },
{ text: "Done", action: this.tour.next }
]
});
}