You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Is it currently possible to do this?
The text was updated successfully, but these errors were encountered:
I want to use
$subReady
on a subscription that has a period in the name. For example:Is it currently possible to do this?
The text was updated successfully, but these errors were encountered: