Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 9000

Show
Ignore:
Timestamp:
03/09/08 07:27:02 (6 months ago)
Author:
tobie
Message:

prototype: Minor clean-up of selector.js. Closes #10844.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spinoffs/prototype/trunk/CHANGELOG

    r8999 r9000  
     1* Minor clean-up of selector.js. Closes #10844. [RQuadling] 
     2 
    13* Make String#unescapeHTML strip tags in IE. Closes #10173. [kangax] 
    24 
  • spinoffs/prototype/trunk/src/selector.js

    r8797 r9000  
    4848        if (m = e.match(p)) { 
    4949          this.matcher.push(Object.isFunction(c[i]) ? c[i](m) : 
    50              new Template(c[i]).evaluate(m)); 
     50            new Template(c[i]).evaluate(m)); 
    5151          e = e.replace(m[0], ''); 
    5252          break; 
     
    387387    nextElementSibling: function(node) { 
    388388      while (node = node.nextSibling) 
    389              if (node.nodeType == 1) return node; 
     389        if (node.nodeType == 1) return node; 
    390390      return null; 
    391391    },