Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

fix(ngModel): use keydown/change events on IE9 instead of input #936

Merged
merged 2 commits into from
May 7, 2012

Commits on May 7, 2012

  1. fix(ngModel): use keydown/change events on IE9 instead of input

    On IE9 the input event is not fired when backspace or delete key are pressed or when
    cut is performed. This makes listening on the input event unreliable and therefore
    it's better for us to just use keydown/change events instead.
    
    Closes angular#879
    IgorMinar committed May 7, 2012
    Configuration menu
    Copy the full SHA
    49dfdf8 View commit details
    Browse the repository at this point in the history
  2. fix(ngSrc,ngHref): binding should set element prop as well as attr

    IE9 ignores setAttribute('src', val) calls on img if "ng:src" attribute
    is present. It only fetches the image if element property is updated as well.
    
    Closes angular#935
    IgorMinar committed May 7, 2012
    Configuration menu
    Copy the full SHA
    b24cc63 View commit details
    Browse the repository at this point in the history