11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
'use strict';
|
|
|
|
angular.module('copay.send').controller('SendController',
|
|
function($scope, $rootScope, $location) {
|
|
$scope.title = 'Send';
|
|
|
|
if (!$rootScope.peerId) {
|
|
$location.path('signin');
|
|
}
|
|
|
|
});
|