Skip to content

Uncaught SyntaxError: unexpected token: keyword 'if' #149

@ShapesGraphicStudio

Description

@ShapesGraphicStudio

When using RenatoMarinho\LaravelPageSpeed\Middleware\CollapseWhitespace::class I get a JS related error: Uncaught SyntaxError: unexpected token: keyword 'if'

Looks like this part is causing it:

document.onreadystatechange = function () {
        var state = document.readyState
        if (state == 'interactive') {
            document.getElementById('contents').style.visibility="hidden";
        } else if (state == 'complete') {
            setTimeout(function(){
                $('#loading').fadeOut(1600);
                document.getElementById('contents').style.visibility="visible";
            }, 800);
        }
    }

If I change the code to:

document.onreadystatechange = function () {
        var state = document.readyState;
        if (state == 'interactive') {
            document.getElementById('contents').style.visibility="hidden";
        } else if (state == 'complete') {
            setTimeout(function(){
                $('#loading').fadeOut(1600);
                document.getElementById('contents').style.visibility="visible";
            }, 800);
        }
    }

I get Uncaught SyntaxError: unexpected token: keyword 'var'

Everything is working fine when I comment in Kernel.php:
RenatoMarinho\LaravelPageSpeed\Middleware\CollapseWhitespace::class,

Environment:
PHP 7.4.12
Laravel 8.17.2

Any idea on how to get this fixed please?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions