Fixed attribute error

merge-requests/757/head
Eliot Berriot 2019-05-02 11:53:14 +02:00
rodzic cd9cd4d01c
commit 2aee8d791e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -358,6 +358,9 @@ export default {
self.bindEvents()
if (self.tracks.length > 0) {
let el = document.getElementById(`queue-item-${v}`);
if (!el) {
return
}
var topPos = el.offsetTop;
document.getElementById('queue').scrollTop = topPos-10;
}