This commit is contained in:
Gabriel Bazán 2016-02-23 12:34:16 -03:00
parent 6f1987f5df
commit 39b4012531
2 changed files with 1 additions and 2 deletions

View File

@ -1034,6 +1034,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
};
self.setCompactTxHistory = function() {
self.isSearching = false;
self.nextTxHistory = self.historyShowMoreLimit;
self.txHistory = self.completeHistory.slice(0, self.historyShowLimit);
self.txHistoryToList = self.txHistory;

View File

@ -25,8 +25,6 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
ret.isWindowsPhoneApp = isMobile.Windows() && isCordova;
var vanillaScope = ret;
$rootScope.$emit('Local/Searching', false);
var disableScannerListener = $rootScope.$on('dataScanned', function(event, data) {
self.setForm(data);
$rootScope.$emit('Local/SetTab', 'send');