Fix animation after send feedback (back). Adds Share BitPay option in settings

This commit is contained in:
Gustavo Maximiliano Cortez 2016-11-16 16:57:36 -03:00
commit 96e6fc5345
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
5 changed files with 27 additions and 12 deletions

View file

@ -26,13 +26,10 @@ angular.module('copayApp.controllers').controller('sendController', function($sc
popupService.showAlert(gettextCatalog.getString('Thank you!'), gettextCatalog.getString('A member of the team will review your feedback as soon as possible.'), function() {
$scope.feedback.value = '';
$ionicHistory.nextViewOptions({
disableAnimate: true,
disableAnimate: false,
historyRoot: true
});
$ionicHistory.clearHistory();
$timeout(function() {
$state.go('tabs.settings');
});
$ionicHistory.goBack();
});
return;
}