Skip to content

Instantly share code, notes, and snippets.

@foysalit
Last active November 29, 2015 14:18
Show Gist options
  • Save foysalit/a4c850c1c115c3cf14ea to your computer and use it in GitHub Desktop.
Save foysalit/a4c850c1c115c3cf14ea to your computer and use it in GitHub Desktop.
meteor template level subscription
function showSpinner() {
console.log('showing spinner');
}
function hideSpinner() {
console.log('hiding spinner');
}
Template.Tpl.onRendered(function(){
showSpinner();
var sub = Meteor.subscribe('posts', {
onReady: hideSpinner
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment