is it possible to use one event handler within other in link function of angular directive, something like this:
app.directive('testDirective',function(){
return{
restrict:'A',
link:function(scope, element, attrs) {
element.bind('mousedown', function () {
element.bind('keydown', function(evt) {
console.log('pressed',evt);
});
});
}
}});