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
{{ message }}
This repository was archived by the owner on Dec 11, 2025. It is now read-only.
Now given my subroute, how can I access locale and isVIP from my subroute callback mycallback()?
var BooksRouter = Backbone.SubRoute.extend({
initialize: function(options) {
this.locale = options.locale;
}
routes: {
"myroute" : "mycallback",
},
mycallback: function() {
//###### how can I get the value of locale here??
},
});