You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
418 B
19 lines
418 B
/**
|
|
* Ignore media nodes without `currenSrc`
|
|
* Notes:
|
|
* - https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/currentSrc
|
|
* - https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/src
|
|
*/
|
|
if (!node.currentSrc) {
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Ignore media nodes which are `paused` or `muted`
|
|
*/
|
|
if (node.hasAttribute('paused') || node.hasAttribute('muted')) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|