We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef928a7 commit b8a6cd7Copy full SHA for b8a6cd7
dist/fast-search-card.js
@@ -8135,17 +8135,14 @@ class FastSearchCard extends HTMLElement {
8135
8136
// Nur bei echter URL-Änderung updaten
8137
if (newVideoUrl && currentSrc && !currentSrc.includes(newVideoUrl.split('/').pop())) {
8138
- console.log('Video URL wirklich geändert:', newVideoUrl);
8139
videoElement.src = newVideoUrl;
8140
videoElement.load();
8141
8142
videoElement.onended = function() {
8143
- console.log('Video beendet! Pausiere jetzt...');
8144
this.pause();
8145
this.currentTime = this.duration - 0.1;
8146
};
8147
}
8148
- // Wenn Video bereits läuft und korrekte URL hat - NICHTS machen
8149
8150
8151
0 commit comments