2014-03-31 12:48:35 -03:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
angular.module('copay.peer').controller('PeerController',
|
2014-04-16 19:14:58 -03:00
|
|
|
function($scope, $rootScope, $location, $routeParams) {
|
2014-03-31 12:48:35 -03:00
|
|
|
|
|
|
|
|
$scope.init = function() {
|
2014-03-31 18:05:35 -03:00
|
|
|
//Network.connect($rootScope.masterId);
|
2014-03-31 12:48:35 -03:00
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
|