Guest User

Untitled

a guest
Jun 20th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. jQuery.extend({
  2. _httpData: jQuery.httpData,
  3. httpData: function (xhr, type, s) {
  4. var ct = xhr.getResponseHeader("content-type") || "";
  5. type = type && type === 'script' && ct.indexOf("json") >= 0 ? 'json' : type;
  6. return jQuery._httpData(xhr, type, s);
  7. }
  8. });
Add Comment
Please, Sign In to add comment