Fix mediatag redrawn on content update

This commit is contained in:
yflory 2018-04-23 15:35:55 +02:00
parent 2d08924462
commit 9d30e48a44

View File

@ -401,7 +401,7 @@ define([
var src = tag.getAttribute('src');
if (mediaTagMap[src]) {
mediaTagMap[src].forEach(function (n) {
tag.appendChild(n);
tag.appendChild(n.cloneNode());
});
}
});