Implement proper send search design.
This commit is contained in:
parent
3f5a8307e3
commit
e5c6e5a2d2
3 changed files with 73 additions and 7 deletions
|
|
@ -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)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue