mirror of
https://github.com/awatson1978/meteor-api.git
synced 2026-05-15 22:02:11 -06:00
[GH-ISSUE #83] created vs onCreated #68
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/meteor-api#68
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @skywalkerlw on GitHub (Aug 31, 2016).
Original GitHub issue: https://github.com/awatson1978/meteor-api/issues/83
In snippets:
`Template.name.onCreated = function(){
};`
but the correct one should be (you have misused with created):
Template.name.onCreated(function() { });