2
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
3
Code licensed under the BSD License:
4
http://developer.yahoo.net/yui/license.txt
7
YUI.add('dd-drop-plugin', function(Y) {
10
* This is a simple Drop plugin that can be attached to a Node via the plug method.
12
* @submodule dd-drop-plugin
15
* This is a simple Drop plugin that can be attached to a Node via the plug method.
21
Y.Plugin = Y.Plugin || {};
23
var Drop = function(config) {
24
config.node = config.owner;
25
Drop.superclass.constructor.apply(this, arguments);
30
* @description dd-drop-plugin
33
Drop.NAME = "dd-drop-plugin";
36
* @description The Drop instance will be placed on the Node instance under the drop namespace. It can be accessed via Node.drop;
42
Y.extend(Drop, Y.DD.Drop);
47
}, '3.0.0pr1' ,{requires:['dd-drop'], skinnable:false});