I\'m having trouble with a callback after the #each
has finished. I have a template named \"content\":
{{#if T
A possibly simpler approach to consider - create a template around your #each
block and then get an onRendered event afterwards:
html:
{{#if Template.subscriptionsReady}}
{{> eachBlock}}
{{else}}
Loading...
{{/if}}
{{#each currentData}}
{{/each}}
js:
Template.eachBlock.onRendered(function(){
console.log("My each block should now be fully rendered!");
});