diff --git a/js/directives.js b/js/directives.js index 993357694..ca4f76b2d 100644 --- a/js/directives.js +++ b/js/directives.js @@ -280,16 +280,6 @@ angular.module('copayApp.directives') } } ]) - .directive('autoFocus', function($timeout) { - return { - restrict: 'AC', - link: function(_scope, _element) { - $timeout(function() { - _element[0].focus(); - }); - } - }; - }) .directive('showFocus', function($timeout) { return function(scope, element, attrs) { scope.$watch(attrs.showFocus,