Wallet/js/controllers/send.js
2014-03-31 12:48:35 -03:00

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