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.