You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With enabled cookie acceptance when users scroll AND enabled site reload after cookie accept, the js-code starts to execute the cnHandleScroll function each time user scrolls down on the site below the number of pixels defined in OnScroll-setting, thus producing an infinite reload loop once user scrolled down below that level.
IMHO the binding $( window ).on( 'scroll', cnHandleScroll ); should only happen as long as 'cookie_notice_accepted' is not set. Once it is set, the scroll event should not be registered at all.
The text was updated successfully, but these errors were encountered:
With enabled cookie acceptance when users scroll AND enabled site reload after cookie accept, the js-code starts to execute the
cnHandleScroll
function each time user scrolls down on the site below the number of pixels defined inOnScroll
-setting, thus producing an infinite reload loop once user scrolled down below that level.IMHO the binding
$( window ).on( 'scroll', cnHandleScroll );
should only happen as long as'cookie_notice_accepted'
is not set. Once it is set, the scroll event should not be registered at all.The text was updated successfully, but these errors were encountered: