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,16 +0,0 @@
var lunchServices, socketFactory;
lunchServices = angular.module('lunchServices', []);
lunchServices.factory('socket', socketFactory = function() {
var s;
s = window.io.connect();
s.on('connect', function() {
console.log('connected with socket!');
return s.on('message', function(message) {
console.log('New comet message received :: ');
return console.log(message);
});
});
return s;
});