This is my first Meteor project and I'm trying to understand the Meteor itself at the same time. Now I've came across with the following syntax :
Template.editor.rendered = function() {
// some stuff here
}
Altough I've looked at the web, I could not find what is this kind of function. I mean I wonder what should I put inside this function and when this function will be called ? For example, if I have a url like localhost:3000/test
, when I type this url into browser, does this action call Template.test.rendered= function()
?