Fix issue

This commit is contained in:
Pierre 2018-05-08 12:39:16 +02:00
parent 2dae59e749
commit beafe2580a

View File

@ -60,7 +60,7 @@ ComunicWeb.components.textParser = {
//Get the list of user tags of the target
var nodes = target.getElementsByTagName("userTag");
for (const num in nodes) {
for (var num in nodes) {
if (nodes.hasOwnProperty(num)) {
const node = nodes[num];