mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-12 19:41:04 +02:00
fix af_zz_vidmute for new chrome breaking muting via setAttribute
This commit is contained in:
parent
bb84330234
commit
1cf69d435d
@ -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,7 +15,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;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user