X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcore.js;h=d910f99ba360892560bc9c802ac542bad38e46f3;hb=5dc7bb7233efee125922cc63e286c96a73b9326c;hp=cbc3b408b22c49ea3b45b8ae648b25307168f0f9;hpb=fc38ead4dc2dd201ad0eb7539a65a4a5bbc1644b;p=jquery.git diff --git a/src/core.js b/src/core.js index cbc3b40..d910f99 100644 --- a/src/core.js +++ b/src/core.js @@ -90,9 +90,6 @@ jQuery.fn = jQuery.prototype = { return this.length; }, - // The number of elements contained in the matched element set - length: 0, - // Get the Nth element in the matched element set OR // Get the whole matched element set as a clean array get: function( num ) { @@ -1128,13 +1125,15 @@ jQuery.extend({ return (text || "").replace( /^\s+|\s+$/g, "" ); }, + // NOTE: Due to the conflict with Scriptaculous (http://dev.jquery.com/ticket/3248) + // We remove support for functions since jQuery 1.3 makeArray: function( array ) { var ret = []; if( array != null ){ var i = array.length; - //the window, strings and functions also have 'length' - if( i == null || array.split || array.setInterval || array.call ) + // The window, strings (and functions) also have 'length' + if( i == null || array.split || array.setInterval ) ret[0] = array; else while( i )