From 935c36be606a27515bf70d96542547432c90f40c Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Mon, 31 Aug 2020 18:33:36 +0300 Subject: [PATCH] Replaced the well element with the card (bootstrap). --- assets/js/general_functions.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/assets/js/general_functions.js b/assets/js/general_functions.js index 20fe987a..bc1a0c4f 100755 --- a/assets/js/general_functions.js +++ b/assets/js/general_functions.js @@ -316,8 +316,13 @@ window.GeneralFunctions = window.GeneralFunctions || {}; GeneralFunctions.displayMessageBox(EALang.unexpected_issues, EALang.unexpected_issues_message); $('
', { - 'class': 'well', - 'html': response.message || '→ No error information provided.' + 'class': 'card', + 'html': [ + $('
', { + 'class': 'card-body', + 'html': response.message || '→ No error information provided.' + }) + ] }) .appendTo('#message_box'); };