Skip to content

Instantly share code, notes, and snippets.

@dearlordylord
Created April 27, 2015 09:27
Show Gist options
  • Save dearlordylord/3c0950b57497bdc2a96e to your computer and use it in GitHub Desktop.
Save dearlordylord/3c0950b57497bdc2a96e to your computer and use it in GitHub Desktop.
Iron Router error
var A = RouteController.extend({
onBeforeAction: function() {
console.warn('A');
this.next();
}
});
var B = A.extend({
onBeforeAction: function() {
console.warn('B');
this.next();
}
});
this.route('extendTest', {
controller: B
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment