Searched defs:Drag (Results 1 - 3 of 3) sorted by relevance

/yui3/src/dd/js/
H A Ddd-plugin.js4 * Simple Drag plugin that can be attached to a Node or Widget via the plug method.
9 * Simple Drag plugin that can be attached to a Node or Widget via the plug method.
10 * @class Drag
11 * @extends DD.Drag
15 var Drag = function(config) { function
23 Drag.superclass.constructor.call(this, config);
35 Drag.NAME = "dd-plugin";
39 * @description The Drag instance will be placed on the Node instance under the dd namespace. It can be accessed via Node.dd;
42 Drag.NS = "dd";
44 Y.extend(Drag,
[all...]
H A Ddrag.js9 * @class Drag
192 Drag = function(o) {
194 Drag.superclass.constructor.apply(this, arguments);
202 Drag.NAME = 'drag';
209 Drag.START_EVENT = 'mousedown';
211 Drag.ATTRS = {
224 Y.error('DD.Drag: Invalid Node Given: ' + node);
241 Y.error('DD.Drag: Invalid dragNode Given: ' + node);
320 * @description This config option is set by Drag to inform you of which handle fired the drag event (in the case that there are several handles): default false.
359 * @description This attribute only works if the dd-drop module is active. It will set the dragMode (point, intersect, strict) of this Drag instanc
[all...]
H A Ddrag-gestures.js5 * This module is loaded and over rides 2 key methods on DD.Drag and DD.DDM to
8 Y.log('Drag gesture support loaded', 'info', 'drag-gestures');
10 Y.DD.Drag.START_EVENT = 'gesturemovestart';
12 Y.DD.Drag.prototype._prep = function() {
19 node.on(Y.DD.Drag.START_EVENT, Y.bind(this._handleMouseDownEvent, this), {

Completed in 31 milliseconds