Hi.
When having for example:
$(window).on('resize', function(e){
//code here is executed every time resizable action
});
Same happens with $(document)
But does not happen if having this:
window.addEventListener("resize", (event) => {
//code here is not executed every time resizable action
});
or having this: document.addEventListener(...
Tested on latest version 1.14.1
Can you please confirm and propose a fix?