diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2013-03-20 01:45:19 +0100 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2013-04-04 12:55:03 -0400 |
commit | 7049877530882c2f8ee09f71f7fc736ca9570736 (patch) | |
tree | 0fa73efdca54f7445880979f4fb035ab891cc5eb /src/ajax.js | |
parent | ba16ba2efcb0a7703d1332044de87bf12700a66e (diff) | |
download | jquery-7049877530882c2f8ee09f71f7fc736ca9570736.tar.gz jquery-7049877530882c2f8ee09f71f7fc736ca9570736.zip |
Correct oldIE-related comments, revert some workarounds. Close gh-1207.
Diffstat (limited to 'src/ajax.js')
-rw-r--r-- | src/ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ajax.js b/src/ajax.js index e965a3e8a..62c3d8ae1 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -8,7 +8,7 @@ var ajax_rquery = /\?/, rhash = /#.*$/, rts = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, // #7653, #8125, #8152: local protocol detection rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, rnoContent = /^(?:GET|HEAD)$/, |