Commit 0305c43bb16e15d7d8737accc62ef0d357da961b

Authored by Pablo Marco del Pont
1 parent e3a487821c
Exists in master and in 1 other branch develop

Cambios según codereview.

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/js/tecladoVirtual-directive.js
1 angular.module('focaDirectivas') 1 angular.module('focaDirectivas')
2 .directive('tecladoVirtual', function() { 2 .directive('tecladoVirtual', function() {
3 return function( scope, elem, attrs ) { 3 return function(scope, elem, attrs) {
4 elem.bind('blur', function() { 4 elem.bind('blur', function() {
5 scope.$emit('blur'); 5 scope.$emit('blur');
6 }); 6 });
7 elem.bind('focus', function() { 7 elem.bind('focus', function() {
8 scope.$emit('focus'); 8 scope.$emit('focus');
9 }); 9 });
10 }; 10 };
11 }); 11 });
12 12