Limit domManip caching to strings < 512 characters long. Ticket #4883.

This commit is contained in:
John Resig 2009-07-11 14:50:59 +00:00
parent 2a268f5f4b
commit 0c4418bbc4

View file

@ -140,7 +140,7 @@ jQuery.fn.extend({
var fragment, scripts, cacheable, cached, cacheresults, first;
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;
cacheresults = jQuery.fragments[ args[0] ];
if ( cacheresults ) {