I'm having a problem with nested controller like this
For example, I have controller A
class A extends Spine.Controller
events:
'click .foo' : 'handle_bar'
Then I create two instance of A like this
a = new A
b = new A
a.append b
When I click on .foo inside b, then b.handle_bar is called. But a.handle_bar is called as well.
How to prevent that problem?
Thanks!