Merge pull request #6209 from ajp8164/feat/send-search-design

Feat/send search design
This commit is contained in:
Gustavo Maximiliano Cortez 2017-06-12 16:16:00 -03:00 committed by GitHub
commit 879b59afa6
3 changed files with 63 additions and 6 deletions

View file

@ -128,6 +128,16 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
updateWalletsList();
};
$scope.searchInFocus = function() {
$scope.searchFocus = true;
};
$scope.searchBlurred = function() {
if ($scope.formData.search == null) {
$scope.searchFocus = false;
}
};
$scope.findContact = function(search) {
if (incomingData.redir(search)) {