Added socket.io lib. Created a temporary Sockets tab for socket connection testing. Streamlined login process to use scope callbacks.

This commit is contained in:
Chris Houseknecht
2014-04-14 15:11:01 -04:00
parent 54aabb75cd
commit 1b242926e9
173 changed files with 44361 additions and 67 deletions

View File

@@ -62,11 +62,11 @@
<h5>Plays</h5>
<div class="job_plays job_well">
<ul>
<ul class="job-list">
<li ng-repeat="play in plays">
<i class="fa icon-job-{{ play.status }}"></i> {{play.name }}
<ul ng-show="play.children.length > 0">
<li ng-repeat="child in play.children">
<li ng-class="playActiveClass" ng-click="selectPlay(play.id)" ng-repeat="child in play.children">
<i class="fa icon-job-{{ child.status }}"></i> {{child.name }}
</li>
</ul>