Stupid mistake when renaming functions. Fixed.
This commit is contained in:
parent
17c8a86bb8
commit
eb2184258f
|
@ -8,7 +8,7 @@ coors = [0..4]
|
|||
state = "lost"
|
||||
|
||||
snum = (n) -> if n < 10 then " #{n}" else "#{n}"
|
||||
fnum = (j) -> if j.found then "[#{fnum(j.n)}]" else " #{fnum(j.n)} "
|
||||
fnum = (j) -> if j.found then "[#{snum(j.n)}]" else " #{snum(j.n)} "
|
||||
|
||||
socket = io.connect "ws://yahoobingo.herokuapp.com"
|
||||
socket.on "connect", ->
|
||||
|
|
Loading…
Reference in New Issue