Replaced the well element with the card (bootstrap).

This commit is contained in:
Alex Tselegidis 2020-08-31 18:33:36 +03:00
parent b6dbf1cfd8
commit 935c36be60

View file

@ -316,8 +316,13 @@ window.GeneralFunctions = window.GeneralFunctions || {};
GeneralFunctions.displayMessageBox(EALang.unexpected_issues, EALang.unexpected_issues_message); GeneralFunctions.displayMessageBox(EALang.unexpected_issues, EALang.unexpected_issues_message);
$('<div/>', { $('<div/>', {
'class': 'well', 'class': 'card',
'html': response.message || '→ No error information provided.' 'html': [
$('<div/>', {
'class': 'card-body',
'html': response.message || '→ No error information provided.'
})
]
}) })
.appendTo('#message_box'); .appendTo('#message_box');
}; };