If I bind an event fired after dom replacement (lines 333-336) before dom replacement, for example
document.addEventListener('MeteorRiderReplaceComplete', function(){
alert('COMPLETE');
}, false);
and then MeteorRider.init
binding is lost and, as a consequence, the event cannot be captured. I think the reason is that document.open clears the existing document as well as its listeners.