Renaming to follow new convention.

This commit is contained in:
Brendon Duncan 2018-09-06 11:34:00 +12:00
commit 3de34dbf15
2 changed files with 8 additions and 1 deletions

View file

@ -1,6 +1,10 @@
'use strict';
angular.module('copayApp.controllers').controller('amountController', amountController);
(function(){
angular
.module('bitcoincom.controllers')
.controller('amountController', amountController);
function amountController(configService, $filter, gettextCatalog, $ionicHistory, $ionicModal, $ionicScrollDelegate, lodash, $log, nodeWebkitService, rateService, $scope, $state, $timeout, sendFlowService, shapeshiftService, txFormatService, platformInfo, ongoingProcess, popupService, profileService, walletService, $window) {
var vm = this;
@ -780,3 +784,4 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
}
}
})();