When pasting from clipboard using the button on send screen, the text now appears the first time.

This commit is contained in:
Brendon Duncan 2018-07-13 17:18:41 +12:00
commit 2121155dd0

View file

@ -25,7 +25,9 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
$scope.pasteClipboard = function() {
if ($scope.clipboardHasAddress || $scope.clipboardHasContent) {
clipboardService.readFromClipboard(function(text) {
$scope.formData.search = text;
$scope.$apply(function() {
$scope.formData.search = text;
});
$scope.findContact($scope.formData.search);
});
}