Disable tour by removing shortcut and default to run
This commit is contained in:
parent
d4247235e3
commit
1044764192
1 changed files with 1 additions and 6 deletions
|
|
@ -196,7 +196,7 @@ export default {
|
|||
this.checkConnection();
|
||||
// Handle guided tour
|
||||
// If the user has already completed or skipped the guided tour
|
||||
var completedTour = this.getLocalStorageObj("completedTour") || false;
|
||||
var completedTour = this.getLocalStorageObj("completedTour") || true;
|
||||
if (!completedTour) {
|
||||
this.$tours["guidedTour"].start();
|
||||
}
|
||||
|
|
@ -283,11 +283,6 @@ export default {
|
|||
shortcut: "shift+↑ / shift+↓",
|
||||
description: "Switch tab"
|
||||
});
|
||||
|
||||
// Re-run tour
|
||||
Mousetrap.bind("alt+t", () => {
|
||||
this.$tours["guidedTour"].start();
|
||||
});
|
||||
},
|
||||
|
||||
beforeDestroy: function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue