Set cache to false as default for script or json requests. Fixes 7578.
This commit is contained in:
parent
0838bdf52c
commit
8259efe734
|
@ -261,7 +261,7 @@ jQuery.extend({
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( s.dataType === "script" && s.cache === null ) {
|
if ( s.dataType === "script" && s.cache === undefined ) {
|
||||||
s.cache = false;
|
s.cache = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue