From d47b11c9a01c0c66eac70c1c44cb6502a9fc6c61 Mon Sep 17 00:00:00 2001 From: Daniel <daniel@harvey> Date: Wed, 6 Jan 2021 13:56:31 +0100 Subject: [PATCH] FIX: Tour (newer bootstrap version) did not allow HTML in popover. --- src/core/js/tour.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/js/tour.js b/src/core/js/tour.js index 7b47dd37..07c21efa 100644 --- a/src/core/js/tour.js +++ b/src/core/js/tour.js @@ -630,6 +630,7 @@ var tour = new function() { content: markdown_content, placement: placement, html: true, + sanitize: false, trigger: 'manual', template: popover_template, }); -- GitLab