Changeset 8691
- Timestamp:
- 01/22/08 23:36:47 (8 months ago)
- Files:
-
- spinoffs/prototype/trunk/CHANGELOG (modified) (1 diff)
- spinoffs/prototype/trunk/src/array.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinoffs/prototype/trunk/CHANGELOG
r8656 r8691 1 1 *SVN* 2 3 * Fix "function $A" declaration inside of a conditional (confuses IE). Fixes #10882. [Jacco, Andrew Dupont] 2 4 3 5 * Fixed selector parsing so that "#foo [bar=baz]" is treated the same way as "#foo *[bar=baz]". Closes #10734. [jlukas, kangax, Andrew Dupont] spinoffs/prototype/trunk/src/array.js
r8451 r8691 8 8 9 9 if (Prototype.Browser.WebKit) { 10 function $A(iterable) {10 $A = function(iterable) { 11 11 if (!iterable) return []; 12 12 if (!(Object.isFunction(iterable) && iterable == '[object NodeList]') && … … 15 15 while (length--) results[length] = iterable[length]; 16 16 return results; 17 } 17 }; 18 18 } 19 19