Searched defs:NodeList (Results 1 - 3 of 3) sorted by relevance

/yui3/src/node/js/
H A Dnodelist.js2 * The NodeList module provides support for managing collections of Nodes.
8 * The NodeList class provides a wrapper for manipulating DOM NodeLists.
9 * NodeList properties can be accessed via the set/get methods.
10 * Use Y.all() to retrieve NodeList instances.
12 * @class NodeList
16 var NodeList = function(nodes) { class
40 * The underlying array of DOM nodes bound to the Y.NodeList instance
47 NodeList.NAME = 'NodeList';
50 * Retrieves the DOM nodes bound to a NodeList instanc
71 if (name && fn) { function
[all...]
H A Dnode-pluginhost.js40 // allow batching of plug/unplug via NodeList
41 // doesn't use NodeList.importMethod because we need real Nodes (not tmpNode)
42 Y.NodeList.prototype.plug = function() {
44 Y.NodeList.each(this, function(node) {
49 Y.NodeList.prototype.unplug = function() {
51 Y.NodeList.each(this, function(node) {
/yui3/src/transition/js/
H A Dtransition-native.js582 * @for NodeList
586 * once per item in the NodeList.
589 Y.NodeList.prototype.transition = function(config, callback) {
629 Y.NodeList.prototype.toggleView = function(name, on, callback) {

Completed in 283 milliseconds