diff --git a/mixins/AnimeList.pixy b/mixins/AnimeList.pixy index ecf4b009..303ab3f9 100644 --- a/mixins/AnimeList.pixy +++ b/mixins/AnimeList.pixy @@ -17,7 +17,7 @@ component AnimeListScrollable(animeListItems []*arn.AnimeListItem, viewUser *arn a(href=item.Link(viewUser.Nick))= item.Anime().Title.ByUser(user) .anime-list-item-actions - if user != nil && item.Status == arn.AnimeListStatusWatching && user.Location.CountryName != "Japan" + if user != nil && item.Status != arn.AnimeListStatusCompleted && user.Location.CountryName != "Japan" //- if user.ID == "KpdWUlPzR" //- a(href=arn.Nyaa.GetLink(item.Anime()), title="Search on Nyaa", target="_blank", rel="noopener") //- RawIcon("download") diff --git a/scripts/AnimeNotifier.ts b/scripts/AnimeNotifier.ts index 9caad55d..2e99223a 100644 --- a/scripts/AnimeNotifier.ts +++ b/scripts/AnimeNotifier.ts @@ -992,6 +992,8 @@ export default class AnimeNotifier { } onKeyDown(e: KeyboardEvent) { + console.log(e.keyCode) + let activeElement = document.activeElement // Ignore hotkeys on input elements