From cddc06972beef868dac2cce34f8ce882039d4c9c Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Sat, 23 Jun 2018 14:55:02 -0600 Subject: [PATCH] Allow HTML in alert message --- static/js/bsalert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/bsalert.js b/static/js/bsalert.js index 7daf219..db3eb68 100644 --- a/static/js/bsalert.js +++ b/static/js/bsalert.js @@ -26,7 +26,7 @@ function bsalert(title, message, okbtn, cancelbtn, callback) { + ''; $("body").append(html); $("#bsalert-title").text(title); - $("#bsalert-message").text(message); + $("#bsalert-message").html(message); if (typeof okbtn != "string") { okbtn = "OK"; }