When creating a Meteor event handler, what’s the difference between…
‘click .something’: function(e,t){
var data = t.data
}
vs
‘click .something’: function(e,t){
var data = Template.Instance().data
}
They both seem to bring up the same data. Is there a reason why I should one or the other?