Show player list when connected to a server

This commit is contained in:
AlexKvazos
2015-04-30 00:28:48 -05:00
parent a8a64e3e44
commit f3683b4e8e
6 changed files with 104 additions and 1 deletions
+15 -1
View File
@@ -1,4 +1,18 @@
<div id="buffer" ng-controller="bufferController"></div>
<div id="buffer" ng-controller="bufferController">
<div id="players" ng-controller="playersController" ng-show="players.length">
<div class="header">Players</div>
<div class="body">
<ul>
<li ng-repeat="player in players">
<img src="//cravatar.eu/helmavatar/{{player}}/18" width="18px">
{{player}}
</li>
</ul>
</div>
</div>
</div>
<form ng-submit="send()" ng-controller="chatController">
<div id="chat">