Add empty view and controller for review transaction route

This commit is contained in:
Sam Cheng Hung 2018-07-18 16:41:52 +08:00
commit 8a0575d238
5 changed files with 663 additions and 554 deletions

View file

@ -0,0 +1,5 @@
'use strict';
angular.module('copayApp.controllers').controller('reviewController', function($rootScope, $scope, $interval, $filter, $timeout, $ionicScrollDelegate, gettextCatalog, walletService, platformInfo, lodash, configService, $stateParams, $window, $state, $log, profileService, bitcore, bitcoreCash, txFormatService, ongoingProcess, $ionicModal, popupService, $ionicHistory, $ionicConfig, payproService, feeService, bwcError, txConfirmNotification, externalLinkService, firebaseEventsService, soundService) {
});

View file

@ -316,6 +316,18 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
}
}
})
.state('tabs.send.review', {
url: '/review',
views: {
'tab-send@tabs': {
controller: 'reviewController',
templateUrl: 'views/review.html'
}
},
params: {
paypro: null
}
})
/*
*