Lines Matching defs:Drag
4 * 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) {
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, Y.DD.Drag, {
197 Y.Plugin.Drag = Drag;