Koen [XII]
Koen [XII]
Is Meteor 1.3 support planned?
Well it depends. If you want to loose jQuery as a dependency, which I understand, you also loose some functionality. jQuery is pretty 'default' in Meteor, so I think most...
I think this is more technically correct (setting viewModelReady to false when the Nexus is first constructed (and all 'on' listeners still need to be added) and setting it to...
I think what would actually be best is that if one of the unbinds runs before the bind rather than unbinding it removes the function from onViewReady (but I'm not...
More specifically: the click binding will get executed twice (or thrice, etc.) when the connection is lost. I think the package expects the unbind function to be called when the...
Note: I added a custom mousedown binding and the same occurs. Note: when I console.log(this) within the viewmodel I can see the functions get executed after reconnection and a second...
Basically the onReady gets executed, but the onInvalidate does not. Is it possible that in ``` const computation = Tracker.currentComputation; if (computation) computation.onInvalidate(callback); ``` } Tracker.currentComputation is undefined?
I'm pretty sure it is (null, not undefined), but now on to the why... Could it be that because the datasource is GroundDB the computation is different? But then why...
I can verify that the unbind function is actually called on these elements after Meteor.reconnect() and ends up all the way at elem.removeEventListener with elem, type and listener properly defined...
Nope, bind gets called only once after reconnect, so I'm back to looking at the removeEventListener and why it's not working...