>
> What exactly did you change to get it back working like was used to before?
>
>
This is the code that was already in preview.js:
// Pause on blur (unfocus)
if (this.pauseOnBlur && !this.isMobile)
{
jQuery(window).focus(function ()
{
self["setSuspended"](false);
});
jQuery(window).blur(function ()
{
self["setSuspended"](true);
});
}
I simply moved it outside of the part that made it only activate when in preview mode.
But yeah, I'll try to get it working again with the browser plugin instead.