Fixed an issue where the source element wouldn't load the video when the src attribute is changed.
This commit is contained in:
parent
3eadebec0c
commit
2d41cb26a0
@ -2166,6 +2166,11 @@ class source extends IgniteTemplate {
|
|||||||
if (this.element && name && name.trim().toLowerCase() == "src") {
|
if (this.element && name && name.trim().toLowerCase() == "src") {
|
||||||
this.element.parentElement.pause();
|
this.element.parentElement.pause();
|
||||||
this.element.parentElement.currentTime = 0;
|
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.
|
//Call the original on attribute changed function.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user