/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead/static/javascript/yui/build/dd/dd-drop-plugin-debug.js

  • Committer: Martin Albisetti
  • Date: 2008-12-30 19:20:39 UTC
  • Revision ID: argentina@gmail.com-20081230192039-kc2spvli08fo09sx
Upgrade YUI3 to PR2

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
3
3
Code licensed under the BSD License:
4
4
http://developer.yahoo.net/yui/license.txt
5
 
version: 3.0.0pr1
 
5
version: 3.0.0pr2
6
6
*/
7
7
YUI.add('dd-drop-plugin', function(Y) {
8
8
 
16
16
        * @class DropPlugin
17
17
        * @extends Drop
18
18
        * @constructor
 
19
        * @namespace plugin
19
20
        */
20
21
 
21
 
        Y.Plugin = Y.Plugin || {};
22
22
 
23
23
        var Drop = function(config) {
24
24
            config.node = config.owner;
40
40
 
41
41
 
42
42
        Y.extend(Drop, Y.DD.Drop);
43
 
        Y.Plugin.Drop = Drop;
44
 
 
45
 
 
46
 
 
47
 
}, '3.0.0pr1' ,{requires:['dd-drop'], skinnable:false});
 
43
        Y.namespace('plugin');
 
44
        Y.plugin.Drop = Drop;
 
45
 
 
46
 
 
47
 
 
48
}, '3.0.0pr2' ,{requires:['dd-drop'], skinnable:false});