mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-08 21:38:43 +00:00
feat(tour): ESC to perma-close #4886 @lemoness @alys
This commit is contained in:
parent
152853a877
commit
cca2d81bc3
1 changed files with 7 additions and 0 deletions
|
|
@ -135,6 +135,7 @@ function($rootScope, User, $timeout, $state) {
|
|||
var tour = {};
|
||||
_.each(chapters, function(v,k){
|
||||
tour[k] = new Tour({
|
||||
name: k,
|
||||
backdrop: true,
|
||||
template: function(i,step){
|
||||
return '<div class="popover" role="tooltip"> ' +
|
||||
|
|
@ -204,6 +205,12 @@ function($rootScope, User, $timeout, $state) {
|
|||
});
|
||||
});
|
||||
|
||||
$(document).on("keyup.tour-intro", function(e) {
|
||||
if (e.which == 27) {
|
||||
return User.set({'flags.tour.intro':-1});
|
||||
}
|
||||
})
|
||||
|
||||
return {
|
||||
goto: goto
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue