From 2d41cb26a0468fe5be97b488f2a5b122441381d9 Mon Sep 17 00:00:00 2001 From: MattMo Date: Tue, 7 Nov 2023 09:25:51 -0800 Subject: [PATCH] Fixed an issue where the source element wouldn't load the video when the src attribute is changed. --- ignite-template.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ignite-template.js b/ignite-template.js index 1effe10..c90a3cd 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -2166,6 +2166,11 @@ class source extends IgniteTemplate { if (this.element && name && name.trim().toLowerCase() == "src") { this.element.parentElement.pause(); this.element.parentElement.currentTime = 0; + + //If there is a valid video source, call load on the player. + if (newValue && newValue.length > 0) { + this.element.parentElement.load(); + } } //Call the original on attribute changed function.