angular: (keyup.enter) doesn't trigger in IE10

Current behavior

When you bind (keyup.enter) to an element it doesn’t trigger in IE10.

Other information

I tried to create a plnkr from the issues’ one and it doesn’t run in IE10.

http://plnkr.co/edit/YhxMmgqL9YKcFF2Qm035?p=preview

About this issue

  • Original URL
  • State: closed
  • Created 8 years ago
  • Comments: 16 (8 by maintainers)

Commits related to this issue

Most upvoted comments

keyup.space still doesn`t trigger in IE11

as a workaround i also bind to keyup.spacebar and it seems to work fine.

<button 
  (keyup.space)="doSomething()" 
  (keyup.spacebar)="doSomething()">
  Click me!
</button>

alright @vicb thanks for some context, I’ll get started on this in the next day or two.