4chan-x/src/General/Thread.coffee
Nicolas Stepien a2e87f1200 Structure.
God damn War Thunder, download faster!
2013-04-26 17:40:51 +02:00

15 lines
256 B
CoffeeScript

class Thread
callbacks: []
toString: -> @ID
constructor: (ID, @board) ->
@ID = +ID
@fullID = "#{@board}.#{@ID}"
@posts = {}
g.threads[@fullID] = board.threads[@] = @
kill: ->
@isDead = true
@timeOfDeath = Date.now()