From 813a5984d02db6af7bea5f16826ee698bbc4acd4 Mon Sep 17 00:00:00 2001 From: Simon Grim Date: Fri, 20 Nov 2015 01:09:08 +0500 Subject: [PATCH] make confirmPopup() to apply htmlFormatMsg() with enabled markout to text of confirmation message --- js/interface_common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/interface_common.js b/js/interface_common.js index f4a0a99..7312d51 100644 --- a/js/interface_common.js +++ b/js/interface_common.js @@ -159,7 +159,7 @@ function confirmPopup(event, req) { }); if (req.messageTxt) - modal.content.find('.message').text(req.messageTxt); + modal.content.find('.message').html(htmlFormatMsg(req.messageTxt, {markout: 'apply'}).html); var btn = modal.content.find('.confirm'); if (req.removeConfirm)