Correct the Learn More button behavior

This commit is contained in:
Alex Tselegidis 2024-07-07 13:01:02 +02:00
parent 8c8aaaa5e7
commit 0242c70fdf
1 changed files with 4 additions and 3 deletions

View File

@ -17,7 +17,6 @@
* Old Name: FrontendBook
*/
App.Pages.Booking = (function () {
const $cookieNoticeLink = $('.cc-link');
const $selectDate = $('#select-date');
const $selectService = $('#select-service');
const $selectProvider = $('#select-provider');
@ -83,10 +82,12 @@ App.Pages.Booking = (function () {
},
});
const $cookieNoticeLink = $('.cc-link');
$cookieNoticeLink.replaceWith(
$('<a/>', {
'data-toggle': 'modal',
'data-target': '#cookie-notice-modal',
'data-bs-toggle': 'modal',
'data-bs-target': '#cookie-notice-modal',
'href': '#',
'class': 'cc-link',
'text': $cookieNoticeLink.text(),