Merge pull request #105 from cmgustavo/feature/01-details

Feature/01 details
This commit is contained in:
Ryan X. Charles 2014-04-20 20:26:03 -03:00
commit 6bfde4735c
4 changed files with 12 additions and 12 deletions

View file

@ -47,4 +47,5 @@ angular.module('copay.header').controller('HeaderController',
$rootScope.flashMessage = {};
};
$rootScope.isCollapsed = true;
});

View file

@ -38,10 +38,4 @@ angular.module('copay.send').controller('SendController',
$rootScope.flashMessage = { message: 'You send a proposal transaction succefully', type: 'success'};
};
$scope.sendTest = function() {
var w = $rootScope.wallet;
w.createTx( 'mimoZNLcP2rrMRgdeX5PSnR7AjCqQveZZ4', '12345',function() {
$rootScope.$digest();
});
};
});