mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-03-13 15:02:57 +00:00
back button on all tour modals
This commit is contained in:
parent
39efb90870
commit
04324c00b4
3 changed files with 21 additions and 0 deletions
|
@ -139,6 +139,13 @@
|
|||
on: "left",
|
||||
},
|
||||
buttons: [
|
||||
{
|
||||
action() {
|
||||
return this.back();
|
||||
},
|
||||
secondary: true,
|
||||
text: "{% trans 'Back' %}",
|
||||
},
|
||||
{
|
||||
action() {
|
||||
return this.complete();
|
||||
|
|
|
@ -107,6 +107,13 @@
|
|||
{% trans ' button to continue the tour.' %}",
|
||||
title: "{% trans 'Save your group' %}",
|
||||
buttons: [
|
||||
{
|
||||
action() {
|
||||
return this.back();
|
||||
},
|
||||
secondary: true,
|
||||
text: "{% trans 'Back' %}",
|
||||
},
|
||||
{
|
||||
action() {
|
||||
return this.complete();
|
||||
|
|
|
@ -127,6 +127,13 @@ tour.addSteps([
|
|||
on: "right",
|
||||
},
|
||||
buttons: [
|
||||
{
|
||||
action() {
|
||||
return this.back();
|
||||
},
|
||||
secondary: true,
|
||||
text: "{% trans 'Back' %}",
|
||||
},
|
||||
{
|
||||
action() {
|
||||
return this.complete();
|
||||
|
|
Loading…
Reference in a new issue