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:
2ed8170
)
Update jQuery.data to use jQuery.noop for toJSON hack instead of an additional superf...
author
Colin Snover
<github.com@zetafleet.com>
Mon, 14 Feb 2011 22:30:18 +0000
(16:30 -0600)
committer
Colin Snover
<github.com@zetafleet.com>
Mon, 14 Feb 2011 22:30:18 +0000
(16:30 -0600)
src/data.js
patch
|
blob
|
history
diff --git
a/src/data.js
b/src/data.js
index
66d2292
..
6efe7b0
100644
(file)
--- a/
src/data.js
+++ b/
src/data.js
@@
-68,9
+68,7
@@
jQuery.extend({
// TODO: This is a hack for 1.5 ONLY. Avoids exposing jQuery
// metadata on plain JS objects when the object is serialized using
// JSON.stringify
- cache[ id ].toJSON = function () {
- return undefined;
- };
+ cache[ id ].toJSON = jQuery.noop;
}
// An object can be passed to jQuery.data instead of a key/value pair; this gets