Lines Matching defs:Node
8 * which should be plugged into every instance of Node by default).
12 * @for Node
16 Y.Node.plug = function() {
18 args.unshift(Y.Node);
20 return Y.Node;
24 * Unregisters any class level plugins which have been registered by the Node
31 Y.Node.unplug = function() {
33 args.unshift(Y.Node);
35 return Y.Node;
38 Y.mix(Y.Node, Y.Plugin.Host, false, null, 1);
45 Y.Node.prototype.plug.apply(Y.one(node), args);
52 Y.Node.prototype.unplug.apply(Y.one(node), args);