Closed jamauro closed 8 months ago
Small change to recommend moving sub.ready into its own $m statement. Having it in the same $m as the subscription causes Meteor.subscribe to be called multiple times which I think is harmless but feels unnecessary.
sub.ready
$m
Meteor.subscribe
Thanks @jamauro. This does look better.
I think this is ready to be merged @zodern. 🙂
Small change to recommend moving
sub.ready
into its own$m
statement. Having it in the same$m
as the subscription causesMeteor.subscribe
to be called multiple times which I think is harmless but feels unnecessary.