Skip to content

Commit

Permalink
removed 'version' service provided with the seed
Browse files Browse the repository at this point in the history
  • Loading branch information
btford committed Jul 16, 2012
1 parent 35e9775 commit 7231301
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions public/js/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@

// Demonstrate how to register services
// In this case it is a simple value service.
app.
value('version', '0.1').
factory('socket', function () {
var socket = io.connect();
return socket;
});
app.factory('socket', function () {
var socket = io.connect();
return socket;
});

0 comments on commit 7231301

Please sign in to comment.