From 81b1533135140c06d9206c9c3a67cf2c15d0a432 Mon Sep 17 00:00:00 2001 From: Yusuf Cinar Date: Fri, 21 Jun 2013 00:34:19 +0100 Subject: [PATCH] Do not add your own user id to the contact list --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 1b4e09e..ca81579 100644 --- a/index.html +++ b/index.html @@ -610,7 +610,9 @@

Welcome to your Video streaming site, {{ me }}

for (i=0; i< usernames.length; i++) { var row = table.insertRow(0); var cell = row.insertCell(0); - cell.innerHTML = ""; + if (usernames[i] != {{ me }} ) { + cell.innerHTML = ""; + } } }