X-Git-Url: http://git.roojs.org/?p=roojs1;a=blobdiff_plain;f=docs%2Fsrc%2FRoo_util_MixedCollection.js.html;h=c6fe719d68f801b6453d46216c77c5d54979bbda;hp=49ef892ac640e75db31c9c984b7399bec6434fbd;hb=aed997d7111c547c2693aeaefde2f32d7a267bbd;hpb=9c0e23144c778703b14fbc840d66855a8a954440 diff --git a/docs/src/Roo_util_MixedCollection.js.html b/docs/src/Roo_util_MixedCollection.js.html index 49ef892ac6..c6fe719d68 100644 --- a/docs/src/Roo_util_MixedCollection.js.html +++ b/docs/src/Roo_util_MixedCollection.js.html @@ -323,6 +323,9 @@ mc.add(otherEl); * @return {Object} The item associated with the passed key. */ item : function(key){ + if (key === 'length') { + return null; + } var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key]; return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype! },