fix af_zz_vidmute for new chrome breaking muting via setAttribute

This commit is contained in:
Andrew Dolgov 2018-09-11 11:46:10 +03:00
parent bb84330234
commit 1cf69d435d
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
if (row) { if (row) {
row.select("video").each(function (v) { row.select("video").each(function (v) {
v.setAttribute("muted", true); v.muted = true;
}); });
} }
@ -15,11 +15,11 @@ require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
if (row) { if (row) {
row.select("video").each(function (v) { row.select("video").each(function (v) {
v.setAttribute("muted", true); v.muted = true;
}); });
} }
return true; return true;
}); });
}); });
}); });