Remove www folder

This commit is contained in:
Ben Ramey
2014-03-22 20:35:05 -05:00
parent 24aa50397c
commit 7a08dcf176
31 changed files with 0 additions and 44968 deletions

View File

@@ -1,20 +0,0 @@
var lunchControllers;
lunchControllers = angular.module('lunchControllers');
lunchControllers.controller('RunCtrl', [
'$scope', 'socket', '$routeParams', function($scope, socket, $routeParams) {
$scope.show = false;
socket.get('/run/' + $routeParams['id'], function(response) {
$scope.show = true;
$scope.run = response;
return $scope.$apply();
});
return socket.on('message', function(m) {
if (m.verb === 'update' && m.id === $routeParams.id) {
$scope.run = m.data;
return $scope.$apply();
}
});
}
]);