Limit domManip caching to strings < 512 characters long. Ticket #4883.
This commit is contained in:
parent
2a268f5f4b
commit
0c4418bbc4
|
@ -140,7 +140,7 @@ jQuery.fn.extend({
|
||||||
var fragment, scripts, cacheable, cached, cacheresults, first;
|
var fragment, scripts, cacheable, cached, cacheresults, first;
|
||||||
|
|
||||||
if ( this[0] ) {
|
if ( this[0] ) {
|
||||||
if ( args.length === 1 && typeof args[0] === "string" ) {
|
if ( args.length === 1 && typeof args[0] === "string" && args[0].length < 512 ) {
|
||||||
cacheable = true;
|
cacheable = true;
|
||||||
cacheresults = jQuery.fragments[ args[0] ];
|
cacheresults = jQuery.fragments[ args[0] ];
|
||||||
if ( cacheresults ) {
|
if ( cacheresults ) {
|
||||||
|
|
Loading…
Reference in a new issue