mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
restore episode pooling
This commit is contained in:
parent
7a927eb121
commit
0bf7dcaa32
@ -49,27 +49,9 @@
|
||||
});
|
||||
|
||||
this.addEventListener('change', onChange);
|
||||
this.addEventListener('keypress', onChange);
|
||||
this.addEventListener('keyup', onChange);
|
||||
this.addEventListener('input', onChange);
|
||||
|
||||
onChange.call(this);
|
||||
|
||||
if (window.IntersectionObserver) {
|
||||
var observer = new IntersectionObserver(function (entries) {
|
||||
for (var j = 0, length2 = entries.length; j < length2; j++) {
|
||||
var entry = entries[j];
|
||||
var intersectionRatio = entry.intersectionRatio;
|
||||
if (intersectionRatio) {
|
||||
|
||||
var target = entry.target;
|
||||
onChange.call(target);
|
||||
}
|
||||
}
|
||||
}, {});
|
||||
|
||||
observer.observe(this);
|
||||
this.observer = observer;
|
||||
}
|
||||
};
|
||||
|
||||
EmbyInputPrototype.detachedCallback = function () {
|
||||
|
Loading…
Reference in New Issue
Block a user