Merge pull request #2952 from cmgustavo/bug/wp8-submit-inputs

Fix layout after send on WP8
This commit is contained in:
Matias Alejo Garcia 2015-07-10 16:09:55 -03:00
commit b8b90f14d6

View file

@ -680,6 +680,11 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
var fc = profileService.focusedClient; var fc = profileService.focusedClient;
var unitToSat = this.unitToSatoshi; var unitToSat = this.unitToSatoshi;
if (isCordova && this.isWindowsPhoneApp) {
this.hideAddress = false;
this.hideAmount = false;
}
var form = $scope.sendForm; var form = $scope.sendForm;
if (form.$invalid) { if (form.$invalid) {
this.error = gettext('Unable to send transaction proposal'); this.error = gettext('Unable to send transaction proposal');