From eb2184258f042dab8aefa82c66543867bcc032fd Mon Sep 17 00:00:00 2001 From: "Elf M. Sternberg" Date: Wed, 4 Dec 2013 00:33:44 -0800 Subject: [PATCH] Stupid mistake when renaming functions. Fixed. --- bingo.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bingo.coffee b/bingo.coffee index ee69b4e..563a3c0 100644 --- a/bingo.coffee +++ b/bingo.coffee @@ -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", ->