copay/js/controllers/send.js

12 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');
}
});