clean up peerController

This commit is contained in:
Mario Colque 2014-04-18 15:36:38 -03:00
parent e5a4e3c25c
commit 58a15502d1
2 changed files with 1 additions and 6 deletions

View File

@ -170,7 +170,7 @@
</script>
<script type="text/ng-template" id="peer.html">
<div class="row" ng-controller="PeerController" ng-init="init()">
<div class="row" ng-controller="PeerController">
<div class="large-6 columns p70r line-dashed-v">
<h3>I am </h3>
<div class="row">

View File

@ -2,11 +2,6 @@
angular.module('copay.peer').controller('PeerController',
function($scope, $rootScope, $location, $routeParams, Socket, controllerUtils) {
$scope.init = function() {
//Network.connect($rootScope.masterId);
};
controllerUtils.handleTransactionByAddress($scope);
});