Hyperoptic uses cookies to give you the best browsing experience. They help us to
remember your preferred settings and ensure you see any special offers specific to
you. Sometimes, we also share cookies with our social media, advertising and
analytics partners to further improve your experience.
More about cookies.
Click accept to continue or manage your preferences below.
You can find out more about what our cookies do and manage your preferences
below. Please note that turning off some of these cookies, may affect your browsing
experience. More about cookies.
To learn how to clear your previous Hyperoptic cookies, click here
Essential
These cookies let you use essential features like shopping baskets and online
payments. They don’t remember where you’ve been on the rest of our site and
they don’t gather any information about you that could be used for marketing.
Marketing
These cookies collect information about how you browse our website so we can
personalise the offers and advertising we show you (recommendedMarketing cookies need Analytics cookies so please choose them both for best experience).
Analytics
These cookies help us understand how our website is performing. We use this
information to help improve our site and your browsing experience. Analytics
cookies never identify individual users (recommended).
';
if (this.menuOpened == 'resi')
{
return '
'; //
}
else if (this.menuOpened == 'busi')
{
return '
';
}
else
{
return '
';
}
},
// -------------------------------------------------------------
// Goto methods
GotoHome: function ()
{
sessionStorage.setItem('pageMenuSelected', 'resi');
window.open(this.site_url, '_self');
},
GotoMap: function (pageType)
{
if (pageType != undefined)
{
sessionStorage.setItem('pageMenuSelected', pageType);
}
if (this.menuOpened == 'resi')
{
window.open(this.site_url + 'map/?residential', '_self');
}
else if (this.menuOpened == 'busi')
{
window.open(this.site_url + 'map/?business', '_self');
}
else
{
window.open(this.site_url + 'map', '_self');
}
},
GotoMyAccount: function (e)
{
e.preventDefault();
sessionStorage.setItem('pageMenuSelected', 'resi');
if (this.isLogon)
{
window.open(this.site_url + 'myaccount-dashboard', '_self');
}
else
{
window.open(this.site_url + 'myaccount-login', '_self');
}
},
GotoUrl: function (e, url, pageType, external)
{
e.preventDefault();
if (pageType != undefined)
{
sessionStorage.setItem('pageMenuSelected', pageType);
}
window.open(url, external != undefined && external ? '_blank' : '_self');
},
GotoUrlExternal: function (url, blankPage)
{
window.open(url, blankPage != undefined && blankPage ? '_blank' : '_self');
},
SetPageType: function (pageType)
{
sessionStorage.setItem('pageMenuSelected', pageType);
},
setupScrollListener: function () {
const elasticWrapper = document.querySelector(".elastic-wr");
if (!elasticWrapper) {
// console.error("Element '.elastic-wr' not found!");
return;
}
const elasticPosition = elasticWrapper.offsetTop;
// console.log("Elastic wrapper position:", elasticPosition);
// console.log("isScrolled value", this.isScrolled);
// Add scroll event listener
window.addEventListener("scroll", () => {
if (this.isMenuFixed) {
// Update `isScrolled` only when `mobile-fixed` is checked in wp admin
this.isScrolled = window.scrollY > elasticPosition;
}
});
}
}
});