Skip to content
Snippets Groups Projects
Commit 4f4c6014 authored by Gabriel Engel's avatar Gabriel Engel
Browse files

remove log

parent dd2d085f
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
init = ->
wrapper = $(".messages-container").find(".wrapper")
console.log wrapper
console.log 'ChatMessages init wrapper: ', wrapper if window.rocketDebug
input = $(".input-message").get(0)
self.scrollable = false
wrapper.bind "scroll", ->
......
Template.chatMessageDashboard.helpers
own: ->
return 'own' if this.u?._id is Meteor.userId()
username: ->
return this.u.username
Tracker.nonreactive ->
return 'own' if this.u?._id is Meteor.userId()
messageDate: (date) ->
return moment(date).format('LL')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment