Notice: The Monaca & Onsen UI Community Forum is shutting down.

For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.

Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.

Uncaught (in promise): pushPage is already running.



  • this.onsNavigator.element.pushPage(ErrorHandlerComponent, {
    data: {
    error: {
    code: code
    }
    }
    }

    When I am executing the above code, I get the error :
    Uncaught (in promise): pushPage is already running. any idea, how to stop the navigator from running?



  • @digish
    found the solution. Just delay the landing.
    var millisecondsToWait = 500;
    setTimeout(function () {
    doTheNeeded();
    }, millisecondsToWait);