This commit is contained in:
Javier 2016-02-22 16:37:00 -03:00
commit a28e9d18d0
2 changed files with 2 additions and 3 deletions

View file

@ -482,8 +482,8 @@
<a fast-click callback-fn="home.resetForm(sendForm)" class="button expand outline dark-gray round" translate>Cancel</a> <a fast-click callback-fn="home.resetForm(sendForm)" class="button expand outline dark-gray round" translate>Cancel</a>
</div> </div>
<div class="columns" ng-class="{'small-6 medium-6 large-6':(home._paypro || home.lockAddress || home.lockAmount)}"> <div class="columns" ng-class="{'small-6 medium-6 large-6':(home._paypro || home.lockAddress || home.lockAmount)}">
<button type="submit" class="button black round expand" ng-disabled="sendForm.$invalid || home.blockUx || index.isOffline || home.destinationWalletNeedsBackup" <button class="button black round expand" ng-disabled="sendForm.$invalid || home.blockUx || index.isOffline || home.destinationWalletNeedsBackup"
ng-style="{'background-color':index.backgroundColor}" translate> ng-style="{'background-color':index.backgroundColor}" fast-click callback-fn="home.submitForm()" translate>
Send Send
</button> </button>
</div> </div>

View file

@ -249,7 +249,6 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
return; return;
} }
$modalInstance.close(addr);
profileService.isBackupNeeded(walletId, function(needsBackup) { profileService.isBackupNeeded(walletId, function(needsBackup) {
self.destinationWalletNeedsBackup = needsBackup; self.destinationWalletNeedsBackup = needsBackup;
$modalInstance.close(addr); $modalInstance.close(addr);