Fix rich text mediatag cache

pull/1/head
yflory 4 years ago
parent 92df689352
commit f9c4387a68

@ -498,9 +498,10 @@ define([
Array.prototype.slice.call(tags).forEach(function(tag) { Array.prototype.slice.call(tags).forEach(function(tag) {
var src = tag.getAttribute('src'); var src = tag.getAttribute('src');
if (mediaTagMap[src]) { if (mediaTagMap[src]) {
mediaTagMap[src].forEach(function(n) { tag.innerHTML = mediaTagMap[src];
/*mediaTagMap[src].forEach(function(n) {
tag.appendChild(n.cloneNode(true)); tag.appendChild(n.cloneNode(true));
}); });*/
} }
}); });
}; };

Loading…
Cancel
Save