Browse Source

brought up to date with uBO's version

pull/2/head 0.9.3.3
gorhill 9 years ago
parent
commit
c0821da875
  1. 4
      src/js/udom.js

4
src/js/udom.js

@ -173,7 +173,7 @@ var doesMatchSelector = function(node, selector) {
/******************************************************************************/ /******************************************************************************/
DOMList.prototype.nodeAt = function(i) { DOMList.prototype.nodeAt = function(i) {
return this.nodes[i];
return this.nodes[i] || null;
}; };
DOMList.prototype.at = function(i) { DOMList.prototype.at = function(i) {
@ -518,7 +518,7 @@ DOMList.prototype.css = function(prop, value) {
return i ? this.nodes[0].style[prop] : undefined; return i ? this.nodes[0].style[prop] : undefined;
} }
if ( value !== '' ) { if ( value !== '' ) {
while ( i-- ) {
while ( i-- ) {
this.nodes[i].style.setProperty(prop, value); this.nodes[i].style.setProperty(prop, value);
} }
return this; return this;

Loading…
Cancel
Save