colly-nodelist.js revision e09da100d0c76f9a0d5c9e3d60a44c29b2402e9d
(function () {
Array_each = Y.Array.each;
if ( typeof nodes === 'string' ) {
} else {
// array of DOM nodes or Node instances
});
}
// _nodes maintained for backward compatibility
}
item: function ( i ) {
},
_item: function ( i ) {
if (node) {
}
return node;
},
},
toFrag: function () {
},
},
refresh: function() {
root = this._queryRoot;
if (query) {
if (!root) {
}
}
}
return this;
},
on: function () {
},
after: function () {
},
toString: function() {
var str = '',
node;
}
}
}
}
},
isNodeList = false,
ret = [];
if ( nodes[0] ) {
if ( !isNodeList ) { // convert array of Nodes to NodeList
}
}, this);
}
}
};
NAME: 'nodeList',
getDOMNodes: function( nodeList ) {
},
_getTempNode: function ( el ) {
if ( !tmp ) {
}
return tmp;
},
}
} );
// workaround for bug 2528555
// Y.augment( NodeList, Y.ArrayList );
// Create iterator methods for a subset of the Node API
'append',
'detach',
'detachAll',
'insert',
'prepend',
'remove',
'removeAttribute',
'set',
'setContent'
] );
Y.all = // chained assigment
};
})();