function detectMobileAndRedirect()

in src/modules/components/viewer.js [236:244]


function detectMobileAndRedirect() {
    if (window.screen && window.screen.width <= 768) {
        if (window._actualUrl) {
            window.location.href = window._actualUrl;
        } else {
            window.location.href = viewerEl.src;
        }
    }
}