From 89e8176c6912f757f400dd47d3495502db0b7322 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 16 Feb 2021 22:05:12 +0300 Subject: [PATCH] Article.render: parse dojo widgets --- js/Article.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/Article.js b/js/Article.js index 54883c2bf..4d400e2dc 100644 --- a/js/Article.js +++ b/js/Article.js @@ -242,6 +242,8 @@ const Article = { container.innerHTML = row.getAttribute("data-content").trim(); + dojo.parser.parse(container); + // blank content element might screw up onclick selection and keyboard moving if (container.textContent.length == 0) container.innerHTML += " ";