tecladoVirtual-directive.js 340 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 angular.module('focaDirectivas') .directive('tecladoVirtual', function() { return function( scope, elem, attrs ) { elem.bind('blur', function() { scope.$emit('blur'); }); elem.bind('focus', function() { scope.$emit('focus'); }); }; });