paper.view.onFrame = this.onFrame
paper.view.onFrame = null
SureSo I have something like this defined:And then I create a couple of instances and invoke stop() on both:var test1, test2;test1 = new Test('test1');test2 = new Test('test2');test1.stop();test2.stop();My expectation would be that I see no console output, because I have unsubscribed both listeners before they even start, but what I get out is:On Frame: test1