Is there a way to extend the data option when using IronRouter and the RouteController, It seems like it gets overridden when I inherit from a super co
data
RouteController
I think _.extends should work in this case as well:
_.extends
ChildController = ApplicationController.extend({ data: function() { var base = ApplicationController.data.call(this); return _.extends(base, { someData: {}, }); } });