Searched defs:node (Results 1 - 5 of 5) sorted by relevance
/yui3/src/dd/js/ |
H A D | drop.js | 15 var NODE = 'node', 54 * @description Fires when a draggable node is dropped on this Drop Target. (Fired from dd-ddm-drop) 90 * @attribute node 94 node: { 95 setter: function(node) { 96 var n = Y.one(node); 98 Y.error('DD.Drop: Invalid Node Given: ' + node); 130 * @description CSS style padding to make the Drop Target bigger than the node. 294 var node = this.get(NODE), id; 295 if (!node [all...] |
H A D | drag.js | 16 NODE = 'node', 87 * <dt>pageX</dt><dd>The original node position X.</dd> 88 * <dt>pageY</dt><dd>The original node position Y.</dd> 100 * <dt>pageX</dt><dd>The current node position X.</dd> 101 * <dt>pageY</dt><dd>The current node position Y.</dd> 114 * <dt>pageX</dt><dd>The current node position X.</dd> 115 * <dt>pageY</dt><dd>The current node position Y.</dd> 126 * @description Fires when this node is aligned. 129 * <dt>pageX</dt><dd>The current node position X.</dd> 130 * <dt>pageY</dt><dd>The current node positio [all...] |
/yui3/src/resize/js/ |
H A D | resize-plugin.js | 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' [all...] |
/yui3/src/get/js/ |
H A D | get.js | 85 CSS node will also remove any styling applied by the referenced file. 190 Mapping of document _yuid strings to <head> or <base> node references so we 191 don't have to look the node up each time we want to insert a request node. 530 // link node fails to load. This is currently true for Firefox 9+ 535 // link node finishes loading. This is currently true for IE, Opera, 544 // loading scripts in parallel as long as the script node's `async` 606 // Give the node an id attribute if it doesn't already have one. 680 index, node; 682 while (node [all...] |
/yui3/src/anim/js/ |
H A D | anim.js | 48 NODE = 'node', 119 var node = anim._node, 120 domNode = node._node, 122 //make sure node instance 126 node.setStyle(att, val + unit); 128 node.setAttribute(att, val); 130 } else if (node.set) { 131 node.set(att, val); 142 var node = anim._node, 143 domNode = node [all...] |
Completed in 33 milliseconds