7 lines
219 B
JavaScript
7 lines
219 B
JavaScript
'use strict';
|
|
|
|
angular.module('copay.peer').controller('PeerController',
|
|
function($scope, $rootScope, $location, $routeParams, Socket, controllerUtils) {
|
|
controllerUtils.handleTransactionByAddress($scope);
|
|
});
|
|
|