#161 Improved query to find first unseen episode
This commit is contained in:
parent
3436f2a646
commit
6ab597924e
|
@ -18,8 +18,10 @@ export function init(): void {
|
||||||
function observeSearchResults(searchRes: Element): void {
|
function observeSearchResults(searchRes: Element): void {
|
||||||
let observer = new MutationObserver(mutations => {
|
let observer = new MutationObserver(mutations => {
|
||||||
mutations.forEach(mutation => {
|
mutations.forEach(mutation => {
|
||||||
let num = searchRes.getElementsByClassName('md-2-line border _md-button-wrap _md md-clickable animelist-completed').length;
|
let scrollTarget = searchRes.querySelector('.ep-view md-list-item:not(.animelist-completed)');
|
||||||
scrollTo(searchRes, num);
|
if (assigned(scrollTarget)) {
|
||||||
|
scrollTarget.scrollIntoView();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue