Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm a beginner at Chrome Web Apps, and am trying to package a JavaScript/HTML5 clone of Bump'n'Jump as a Packaged App. I am running into a wall with Chrome's security policy:

function pump() {
    while (1) {

        game_loop();
        var now = timeGetTime();
        var time_diff = next_time - now;
        next_time += (1000 / 60);

        if (time_diff>0) {
            // we have time left
            setTimeout("pump()", time_diff);
            break;
        }
        // debug("frametime exceeded: " + (-time_diff));
    }
}

It refuses to run setTimeout("pump()", time_diff);, saying

Refused to evaluate script because it violates the following Content Security Policy      directive: "default-src 'self' chrome-extension-resource:". Note that 'script-src' was not explicitly set, so 'default-src' is used as a fallback.

The error is not with the code, as it works outside of Chrome in a browser, Chrome's security doesn't seem to like it. Can anyone tell me why it doesn't want to run pump()?

share|improve this question

1 Answer

up vote 4 down vote accepted

Don't know if this will help but try the following: replace the setTimeout string parameter:

function pump() {
    while (1) {

        game_loop();
        var now = timeGetTime();
        var time_diff = next_time - now;
        next_time += (1000 / 60);

        if (time_diff>0) {
            // we have time left
            setTimeout(pump, time_diff);
            break;
        }
        // debug("frametime exceeded: " + (-time_diff));
    }
}

Using string for the execution parameter in setTimeout or setInterval is the equivalent of an eval and is considered bad practice.

share|improve this answer
This worked great! Thanks! – excelangue Nov 3 '12 at 14:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.