diff --git a/assets/js/frontend_book.js b/assets/js/frontend_book.js
index 15e2ea25..e2cba84d 100644
--- a/assets/js/frontend_book.js
+++ b/assets/js/frontend_book.js
@@ -249,28 +249,28 @@ window.FrontendBook = window.FrontendBook || {};
* Some special tasks might be performed, depending the current wizard step.
*/
$('.button-next').on('click', function () {
- // If we are on the first step and there is not provider selected do not continue
- // with the next step.
+ // If we are on the first step and there is not provider selected do not continue with the next step.
if ($(this).attr('data-step_index') === '1' && !$('#select-provider').val()) {
return;
}
- // If we are on the 2nd tab then the user should have an appointment hour
- // selected.
+ // If we are on the 2nd tab then the user should have an appointment hour selected.
if ($(this).attr('data-step_index') === '2') {
if (!$('.selected-hour').length) {
if (!$('#select-hour-prompt').length) {
- $('#available-hours').append('
'
- + ''
- + EALang.appointment_hour_missing
- + '');
+ $('