shorten stuff in af_zz_vidmute
This commit is contained in:
parent
71b12857e0
commit
5e738ec278
|
@ -1,24 +1,18 @@
|
||||||
|
/* global require, PluginHost */
|
||||||
|
|
||||||
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
|
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
|
||||||
|
function mute(row) {
|
||||||
|
[...row.querySelectorAll("video")].forEach((vid) => { vid.muted = true; });
|
||||||
|
}
|
||||||
|
|
||||||
ready(function () {
|
ready(function () {
|
||||||
PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED_CDM, function (row) {
|
PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED_CDM, function (row) {
|
||||||
if (row) {
|
mute(row);
|
||||||
|
|
||||||
row.querySelectorAll("video").forEach(function (v) {
|
|
||||||
v.muted = true;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
|
||||||
PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED, function (row) {
|
PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED, function (row) {
|
||||||
if (row) {
|
mute(row);
|
||||||
|
|
||||||
row.querySelectorAll("video").forEach(function (v) {
|
|
||||||
v.muted = true;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue