added PeerJS and initial Network service

This commit is contained in:
Mario Colque 2014-03-27 16:31:42 -03:00
commit 76eadc17cf
6 changed files with 188 additions and 12 deletions

View file

@ -6,11 +6,20 @@ angular
.config(function($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'signin.html'
})
.when('/signin', {
templateUrl: 'signin.html'
})
.when('/home', {
templateUrl: 'home.html'
})
.when('/join/:id', {
templateUrl: 'join.html'
})
.otherwise({
templateUrl: '404.html'
});
});