From f74b84498987ace9bbbc3c041607016a23ff251e Mon Sep 17 00:00:00 2001 From: jaubourg Date: Sun, 16 Jan 2011 05:25:45 +0100 Subject: [PATCH] The script prefilter now forces cross-domain requests type to GET. --- src/ajax/script.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ajax/script.js b/src/ajax/script.js index ee1d489..b0e576f 100644 --- a/src/ajax/script.js +++ b/src/ajax/script.js @@ -23,6 +23,7 @@ jQuery.ajaxSetup({ } if ( s.crossDomain ) { + s.type = "GET"; s.global = false; } -- 1.7.10.4