Lines Matching defs:node
11 align: {node:".example", points:["tc", "bc"]}
26 config.node = ((Y.Widget && config.host instanceof Y.Widget) ? config.host.get('boundingBox') : config.host);
62 * Stores the node that is being resized
64 * @attribute node
68 node: {
73 * Stores the widget that the node belongs to, if one exists
88 * Stores the values for node and widget, and sets up an event-listener
95 this.set('node', config.node);
104 * Updates the node's (x,y) values if they are changed via resizing.
105 * If the node belongs to a widget, passes the widget down to _setWidgetProperties method
113 var node = this.get('node'),
115 old: node.getX(),
119 old: node.getY(),
128 //now set properties on just the node or the widget's bounding box
130 node.set('x', x.cur);
134 node.set('y', y.cur);