My account

Lost password

April 27, 2021 2021-04-27 3:14

Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.

Check Availability

Book your holiday here for surprising and satisfactory benefits.

1 Room, 1 Adult, 0 Children
Rooms
Adults
Childrens
Booking Rules Term & Privacy
display: block; /* Show the button on mobile devices */ } } Book Now // Force-capture the spacebar before the theme can scroll the page window.addEventListener('keydown', function(e) { // 32 is the keycode for Space if (e.keyCode === 32 || e.code === 'Space') { const activeEl = document.activeElement; // Check if the focus is currently on the Botpress iframe or the page body // On WordPress, when you click into the bot, the 'iframe' becomes the active element if (activeEl && (activeEl.tagName === 'IFRAME' || activeEl === document.body)) { // Only stop the scroll if the user is likely interacting with the bot // Botpress iframes usually contain 'botpress' in the src or have specific IDs if (activeEl.id.includes('bp-web-widget') || (activeEl.src && activeEl.src.includes('botpress'))) { e.stopImmediatePropagation(); // Kills the event for all other scripts // We don't call preventDefault() here because the iframe // needs the spacebar to actually type the space inside the chat. } } } }, true); // 'true' enables the "Capture" phase, catching the event early