diff options
author | tomsmeding <tom.smeding@gmail.com> | 2017-04-15 18:13:32 +0200 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2017-04-15 18:58:34 +0200 |
commit | e6bb11fc2801ca5be48ddceeecc5001cd5c39ef6 (patch) | |
tree | e1745314cdb5714e0a17413bb0aa22f8a3ab0f40 /webclient | |
parent | 8e1a1c1f01aef52ba8b2af47503461320a0abc20 (diff) |
webclient: Don't handle _push online
TODO: implement nicklist in webclient
Diffstat (limited to 'webclient')
-rw-r--r-- | webclient/client.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webclient/client.html b/webclient/client.html index 40d2df3..c02c6aa 100644 --- a/webclient/client.html +++ b/webclient/client.html @@ -112,6 +112,8 @@ function reconnect(){ addRoomEntry(r,"notice",[now(),"User '"+u+"' joined this room"]); } else if(type=="ping"){ // Do nothing + } else if(type=="online"){ + // TODO: implement nicklist and do something with this } else { alert("Unknown push message type '"+type+"'!"); } |