From beafe2580afdff52c3b5682abc0fe521d33061c1 Mon Sep 17 00:00:00 2001 From: Pierre Date: Tue, 8 May 2018 12:39:16 +0200 Subject: [PATCH] Fix issue --- assets/js/components/textParser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/components/textParser.js b/assets/js/components/textParser.js index 1bac9e53..7276c400 100644 --- a/assets/js/components/textParser.js +++ b/assets/js/components/textParser.js @@ -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];