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

fix($httpBackend): fix HTTP PATCH requests in IE8 #5043

Closed
wants to merge 2 commits into from
Closed

fix($httpBackend): fix HTTP PATCH requests in IE8 #5043

wants to merge 2 commits into from

Commits on Dec 12, 2013

  1. test($httpBackend): add test for using ActiveXObject in IE8 for PATCH…

    … operations
    
    In Internet Explorer 8, the native XMLHttpRequest object does not allow the
    HTTP PATCH method. This tests that in IE8, when performing a PATCH, we fall
    back to ActiveXObject.
    Jeff Schenck committed Dec 12, 2013
    Configuration menu
    Copy the full SHA
    3738798 View commit details
    Browse the repository at this point in the history
  2. fix($httpBackend): fix HTTP PATCH requests in IE8

    In Internet Explorer 8, the native XMLHttpRequest object does not allow the
    HTTP PATCH method. In order to accomplish a PATCH, you need to use the ActiveX
    object. Update the default XHR to use the ActiveX object when doing a PATCH in
    IE8. See the following for documentation:
    
    http://blogs.msdn.com/b/ieinternals/archive/2009/07/23/the-ie8-native-xmlhttprequest-object.aspx
    http://bugs.jquery.com/ticket/13240
    Jeff Schenck committed Dec 12, 2013
    Configuration menu
    Copy the full SHA
    397dc10 View commit details
    Browse the repository at this point in the history