From 0feb4441da38f0091d7b50b7c34793b1a6edaaa6 Mon Sep 17 00:00:00 2001 From: yflory Date: Mon, 11 May 2020 16:12:52 +0200 Subject: [PATCH] Fix misisng html flag in tippy --- www/common/sframe-common-codemirror.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/www/common/sframe-common-codemirror.js b/www/common/sframe-common-codemirror.js index e6ed9ded2..c4d099355 100644 --- a/www/common/sframe-common-codemirror.js +++ b/www/common/sframe-common-codemirror.js @@ -525,7 +525,9 @@ define([ : 'background-color: rgba(255,0,0,0.2)'; marks[id] = editor.markText(pos1, pos2, { css: css, - 'data-cptippy-html': true, + attributes: { + 'data-cptippy-html': true, + }, title: makeTippy(cursor), className: 'cp-tippy-html' });