You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a route is defined using splat params (e.g. /users/*) the go method should inject what ever is given as route arguments correctly.
// Define a route with splat paramBackbone.Highway.route('user.detail',{path: '/users/*',action: function(){}});// Execute routeBackbone.Highway.go('user.detail',['42/detail']);// Should route to /users/42/detail
The text was updated successfully, but these errors were encountered:
If a route is defined using splat params (e.g.
/users/*
) thego
method should inject what ever is given as route arguments correctly.The text was updated successfully, but these errors were encountered: