Backbone newb here.
I have a view that extends Backbone.Marionette.Layout and has several regions. Some of these regions have several regions of their own and so on. If I am at the "top level" region, what is the best why to access methods of a child region/view?
I see that I can do something like this:
region1.currentView.region2.currentView.region3.method()
but that doesn't seem like a good idea. Any thoughts?