remove peer tab

This commit is contained in:
Manuel Araoz 2014-04-29 19:26:12 -03:00
commit 93620fa6c0
4 changed files with 5 additions and 19 deletions

View file

@ -2,11 +2,8 @@
angular.module('copay.header').controller('HeaderController',
function($scope, $rootScope, $location, walletFactory, controllerUtils) {
$scope.menu = [{
'title': 'Copayers',
'icon': 'fi-torsos-all',
'link': '#/peer'
}, {
$scope.menu = [
{
'title': 'Addresses',
'icon': 'fi-address-book',
'link': '#/addresses'

View file

@ -59,7 +59,7 @@ angular.module('copay.controllerUtils')
});
w.on('created', function(myPeerID) {
video.setOwnPeer(myPeerID, w, handlePeerVideo);
$location.path('peer');
$location.path('addresses');
$rootScope.wallet = w;
root.updateBalance();
});