Changeset 9000
- Timestamp:
- 03/09/08 07:27:02 (6 months ago)
- Files:
-
- spinoffs/prototype/trunk/CHANGELOG (modified) (1 diff)
- spinoffs/prototype/trunk/src/selector.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinoffs/prototype/trunk/CHANGELOG
r8999 r9000 1 * Minor clean-up of selector.js. Closes #10844. [RQuadling] 2 1 3 * Make String#unescapeHTML strip tags in IE. Closes #10173. [kangax] 2 4 spinoffs/prototype/trunk/src/selector.js
r8797 r9000 48 48 if (m = e.match(p)) { 49 49 this.matcher.push(Object.isFunction(c[i]) ? c[i](m) : 50 new Template(c[i]).evaluate(m));50 new Template(c[i]).evaluate(m)); 51 51 e = e.replace(m[0], ''); 52 52 break; … … 387 387 nextElementSibling: function(node) { 388 388 while (node = node.nextSibling) 389 if (node.nodeType == 1) return node;389 if (node.nodeType == 1) return node; 390 390 return null; 391 391 },