Only display participants that aren't the host

This commit is contained in:
Kevin Sawicki
2013-07-10 09:24:15 -07:00
parent f3ca26e2c9
commit 98765c7d5c

View File

@@ -31,7 +31,7 @@ class HostView extends View
updateParticipants: (participants) ->
@participants.empty()
for {email, id} in participants when id is @hostSession.getId()
for {email, id} in participants when id isnt @hostSession.getId()
@participants.append $$ ->
@div email