There's a memory leak in the <tournament-details> ViewModel which is created by binding to the Game model's length property. Because the game model is in the instance store this binding is never torn down. Would be fixed by https://github.com/canjs/can-define/issues/15
Direct fix will be to move the binding to the component's inserted event, and removed in the removed event.
There's a memory leak in the <tournament-details> ViewModel which is created by binding to the Game model's length property. Because the game model is in the instance store this binding is never torn down. Would be fixed by https://github.com/canjs/can-define/issues/15
Direct fix will be to move the binding to the component's inserted event, and removed in the removed event.