Lines Matching defs:Drop
3 * Provides the ability to create a Drop Target.
8 * Provides the ability to create a Drop Target.
9 * @class Drop
54 * @description Fires when a draggable node is dropped on this Drop Target. (Fired from dd-ddm-drop)
66 Drop = function() {
68 Drop.superclass.constructor.apply(this, arguments);
86 Drop.NAME = 'drop';
88 Drop.ATTRS = {
91 * @description Y.Node instanace to use as the element to make a Drop Target
98 Y.error('DD.Drop: Invalid Node Given: ' + node);
130 * @description CSS style padding to make the Drop Target bigger than the node.
158 * @description Controls the default bubble parent for this Drop instance. Default: Y.DD.DDM. Set to false to disable bubbling. Use bubbleTargets in config.
171 * @description Use the Drop shim. Default: true
183 Y.extend(Drop, Y.Base, {
192 * @description Add this Drop instance to a group, this should be used for on-the-fly group additions.
193 * @param {String} g The group to add this Drop Instance to.
203 * @description Remove this Drop instance from a group, this should be used for on-the-fly group removals.
204 * @param {String} g The group to remove this Drop Instance from.
551 Y.DD.Drop = Drop;