The script prefilter now forces cross-domain requests type to GET.

This commit is contained in:
jaubourg 2011-01-16 05:25:45 +01:00
parent 914aa3d66b
commit f74b844989

View file

@ -23,6 +23,7 @@ jQuery.ajaxSetup({
}
if ( s.crossDomain ) {
s.type = "GET";
s.global = false;
}