Why is scroll start ignored for contenteditables?

Bumped into another issue with contenteditables: if you have a long list of them (and they’re all editable) or long content in an individual one, then you can’t scroll.

Demo: http://codepen.io/emertechie/pen/cgGKB

Issue seems to be coming from ionic.tap.ignoreScrollStart:

ignoreScrollStart: function(e) {
  return (e.defaultPrevented) ||
  (e.target.isContentEditable) ||   // <- this line
  ...

So I’m just wondering why is scroll ignored on a contenteditable? If I manually comment that out, it seems to work fine in my app anyway.

If no compelling reason for it, I’ll send a pull request.