I get Cannot call 'start' of undefined when calling...
Backbone.history.start()
When running some checks Backbone returns the object but Backbone.history returns undefined.
What could be the cause of this?
Thanks
|
I get
When running some checks Backbone returns the object but Backbone.history returns undefined. What could be the cause of this? Thanks
| |||
|
feedback
|
|
Do you have any routes on the controller? Backbone only creates the history once at least one route is specified. More:
http://tinnedfruit.com/2011/04/26/testing-backbone-apps-with-jasmine-sinon-3.html | |||||
feedback
|
|
A similar error message ".. has no method 'start'" pops up if you write | |||
|
feedback
|
|
I hit the same error. This happens when you do not make an instance of the router: var routerInstance = new blogRouter(); | |||
|
feedback
|