App.ApplicationRoute = Ember.Route.extend({
actions: {
switchlang: function(prop) {
this.refresh();
}
}
});
leads to
Object has no method 'refresh'
App.ApplicationRoute = Ember.Route.extend({
actions: {
switchlang: function(prop) {
this.refresh();
}
}
});
leads to
Object has no method 'refresh'