javascript - Safari doesn't like certain Backbone routes -


I have some strange problems I have the following backbone paths:

  Route: " ":" Index "" Foo ":" Index "  

The URI on which I am working / Appointment / Backbone . What's odd here:

  • If I navigate in Chrome or Safari at / appointments / backbone , then it works fine; This is killing the first route.
  • If I navigate to / appointments / backbone # / # foo in Chrome, but this is not in Safari, it should not be assigned the URI to / appointments / backbone / # / % 23foo and I get an error in show_view.js , even if I am not doing anything related remotely, a show view / appointments / backbone Visiting # asdf or any other useless URI generates the same exact error.

    I think I'm just making some simple mistake what's happening?

    I am wrestling with this for hours, and now, really two minutes later I posted the question Done, I've settled the solution. Instead of

    / appointments / backbone # / # foo , I need / appointments / backbone # foo .

Comments