Lines Matching defs:node
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.get('id')) {
296 id = Y.stamp(node);
297 node.set('id', id);
299 node.addClass(DDM.CSS_PREFIX + '-drop');
355 var node = this.get(NODE);
359 node.removeClass(DDM.CSS_PREFIX + '-drop-active-invalid');
360 node.addClass(DDM.CSS_PREFIX + '-drop-active-valid');
369 node.removeClass(DDM.CSS_PREFIX + '-drop-active-valid');
370 node.addClass(DDM.CSS_PREFIX + '-drop-active-invalid');
375 * @description Positions and sizes the shim with the raw data from the node, this can be used to programatically adjust the Targets shim for Animation..
392 var node = this.get(NODE),
393 nh = node.get(OFFSET_HEIGHT),
394 nw = node.get(OFFSET_WIDTH),
395 xy = node.getXY(),
430 //Create the region to be used by intersect when a drag node is over us.
456 var s = this.get('node');