Search code examples
backbone.js

Exclude a specific url from backbone history


Does anyone know, how to not register a specific url in backbone history? I mean the url will be there in the router with a function associated with it, Because my app has a back button, I just don't want to register it in backbone history.


Solution

  • Short answer

    app.navigate('posts/1/edit',{trigger:true, replace: true});
    

    Check the original answer here