git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a268f5
)
Limit domManip caching to strings < 512 characters long. Ticket #4883.
author
John Resig
<jeresig@gmail.com>
Sat, 11 Jul 2009 14:50:59 +0000
(14:50 +0000)
committer
John Resig
<jeresig@gmail.com>
Sat, 11 Jul 2009 14:50:59 +0000
(14:50 +0000)
src/manipulation.js
patch
|
blob
|
history
diff --git
a/src/manipulation.js
b/src/manipulation.js
index
62009be
..
b026672
100644
(file)
--- a/
src/manipulation.js
+++ b/
src/manipulation.js
@@
-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 ) {