]> source.dussan.org Git - jquery.git/commitdiff
No ticket: move jQuery.expando to core
authorRichard Gibson <richard.gibson@gmail.com>
Mon, 25 Feb 2013 20:48:22 +0000 (15:48 -0500)
committerRichard Gibson <richard.gibson@gmail.com>
Mon, 25 Feb 2013 20:48:22 +0000 (15:48 -0500)
src/core.js
src/data.js

index 5fb6828ff52baf81910850014a44cbc78af1fdb4..cae3a90e39f5c7ed8aff871fd0f91857512209a5 100644 (file)
@@ -338,6 +338,9 @@ jQuery.extend = jQuery.fn.extend = function() {
 };
 
 jQuery.extend({
+       // Unique for each copy of jQuery on the page
+       expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ),
+
        noConflict: function( deep ) {
                if ( window.$ === jQuery ) {
                        window.$ = _$;
index f0699d2a729642ef1b83bcdf3f23d1b5a48742a1..3685b7006ea8835080bb84595c0385661d133869 100644 (file)
@@ -201,10 +201,6 @@ data_priv = new Data();
 
 
 jQuery.extend({
-       // Unique for each copy of jQuery on the page
-       // Non-digits removed to match rinlinejQuery
-       expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ),
-
        // This is no longer relevant to jQuery core, but must remain
        // supported for the sake of jQuery 1.9.x API surface compatibility.
        acceptData: function() {