chat_message.js 131 B

123456
  1. Template.chat_message.helpers({
  2. author: function () {
  3. console.log('chat message, this', this);
  4. return "someone";
  5. }
  6. });