Reverted all changes around hiding anime in user list

This commit is contained in:
2018-07-06 02:37:22 +09:00
parent 5099663c37
commit fe1f771968
2 changed files with 2 additions and 28 deletions

View File

@ -164,8 +164,7 @@ export default class AnimeNotifier {
Promise.resolve().then(() => this.dragAndDrop()),
Promise.resolve().then(() => this.colorStripes()),
Promise.resolve().then(() => this.assignTooltipOffsets()),
Promise.resolve().then(() => this.countUp()),
Promise.resolve().then(() => this.hideAddedAnime())
Promise.resolve().then(() => this.countUp())
])
// Apply page title
@ -474,19 +473,6 @@ export default class AnimeNotifier {
}
}
// Hides anime already existing in the user's anime list automatically
hideAddedAnime() {
if(!this.app.currentPath.includes("/explore") && !this.app.currentPath.includes("/genre")) {
return
}
if(localStorage.getItem("hide-added-anime") !== "true") {
return
}
actions.hideAddedAnime()
}
markPlayingSoundTrack() {
for(let element of findAll("soundtrack-play-area")) {
if(element.dataset.soundtrackId === this.currentSoundTrackId) {