mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
Replaced the well element with the card (bootstrap).
This commit is contained in:
parent
b6dbf1cfd8
commit
935c36be60
1 changed files with 7 additions and 2 deletions
|
@ -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');
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue