add comment to search

This commit is contained in:
Matias Alejo Garcia 2016-06-04 17:47:58 -03:00
commit b1a15d56c0
No known key found for this signature in database
GPG key ID: 02470DB551277AB3
4 changed files with 15 additions and 9 deletions

View file

@ -913,8 +913,9 @@ angular.module('copayApp.controllers').controller('indexController', function($r
if (tx.addressTo && self.addressbook && self.addressbook[tx.addressTo]) addrbook = self.addressbook[tx.addressTo] || '';
var searchableDate = computeSearchableDate(new Date(tx.time * 1000));
var message = tx.message ? tx.message : '';
var comment = tx.note ? tx.note.body : '';
var addressTo = tx.addressTo ? tx.addressTo : '';
return ((tx.amountStr + message + addressTo + addrbook + searchableDate).toString()).toLowerCase();
return ((tx.amountStr + message + addressTo + addrbook + searchableDate + comment).toString()).toLowerCase();
}
function computeSearchableDate(date) {

View file

@ -41,6 +41,7 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
$scope.btx.note.body = $scope.data.comment;
$scope.btx.note.editedByName = fc.credentials.copayerName;
$scope.btx.note.editedOn = Math.floor(Date.now() / 1000);
$scope.btx.searcheableString = null;
commentPopup.close();
});
};