diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2012-11-26 03:20:43 -0500 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2012-11-27 01:59:22 +0100 |
commit | 0877d424e08d57e6f0d1da9a86289fb10d0ee136 (patch) | |
tree | c73d6ee4d3d77264336c19e6cf2d8f94c4afad8f /src/data.js | |
parent | 512b826f9f14e30b715b943547b97aaaf1099f4e (diff) | |
download | jquery-0877d424e08d57e6f0d1da9a86289fb10d0ee136.tar.gz jquery-0877d424e08d57e6f0d1da9a86289fb10d0ee136.zip |
Fix #12959: Optimize library-wide patterns
Diffstat (limited to 'src/data.js')
-rw-r--r-- | src/data.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.js b/src/data.js index a61042709..d5a25ff6c 100644 --- a/src/data.js +++ b/src/data.js @@ -188,7 +188,7 @@ jQuery.extend({ // Unique for each copy of jQuery on the page // Non-digits removed to match rinlinejQuery - expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ), + expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ), // The following elements throw uncatchable exceptions if you // attempt to add expando properties to them. |