Fixed an issue where the source element wouldn't load the video when the src attribute is changed.

This commit is contained in:
MattMo 2023-11-07 09:25:51 -08:00
parent 3eadebec0c
commit 2d41cb26a0

View File

@ -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.