I want to use $subReady on a subscription that has a period in the name. For example:
Meteor.publish('something.all', ...);
// Assume the following linens are in the appropriate place and this.$subReady is a valid reference
console.log(this.$subReady['something.all']); // Doesn't seem to work
console.log(this.$subReady.something.all); // Doesn't work, but I expected it not to
I want to use
$subReady
on a subscription that has a period in the name. For example:Is it currently possible to do this?