fix okay button on status modal and others

This commit is contained in:
Gabriel Bazán 2016-09-22 10:03:38 -03:00
commit a6b3b204bd
3 changed files with 6 additions and 4 deletions

View file

@ -1,10 +1,12 @@
'use strict';
angular.module('copayApp.controllers').controller('txStatusController', function($scope, $timeout, $state, $log, addressbookService) {
angular.module('copayApp.controllers').controller('txStatusController', function($scope, $timeout, $state, $ionicHistory, $log, addressbookService) {
if ($scope.cb) $timeout($scope.cb, 100);
$scope.cancel = function() {
$ionicHistory.clearHistory();
$state.go('tabs.home');
$scope.txStatusModal.hide();
};