~ubuntu-branches/ubuntu/lucid/loggerhead/lucid-security

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): James Westby, Roland Mas, Jelmer Vernooij, James Westby
  • Date: 2009-08-26 13:18:03 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090826131803-0ce1fhaetci8b0c5
Tags: 1.17-0ubuntu1
[ Roland Mas ]
* Use the YUI library provided by libjs-yui. (Closes: #511286)

[ Jelmer Vernooij ]
* Use my debian.org address in Uploaders field.
* Add ${misc:Depends} to please lintian.
* Suggest recent version of paste, which doesn't expose internal port
  numbers in links. (Closes: #507000)
* Bump standards version to 3.8.1.

[ James Westby ]
* New upstream release.
* Drop get-orig-source rule in favour of debian/watch.
* Add python-pkg-resources and python-paste to Build-Depends,
  python-pkg-resources to Depends and python-simplejson to
  Recommends due to dependency changes.

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', function(Y) {
8
8
 
122
122
                    this.get(NODE).removeClass(DDM.CSS_PREFIX + '-drop-locked');
123
123
                }
124
124
            }
 
125
        },
 
126
        /**
 
127
        * @attribute bubbles
 
128
        * @description Controls the default bubble parent for this Drop instance. Default: Y.DD.DDM. Set to false to disable bubbling.
 
129
        * @type Object
 
130
        */
 
131
        bubbles: {
 
132
            writeOnce: true,
 
133
            value: Y.DD.DDM
125
134
        }
 
135
 
126
136
    };
127
137
 
128
138
    Y.extend(Drop, Y.Base, {
150
160
                });
151
161
            }, this);
152
162
 
153
 
            this.addTarget(DDM);
 
163
            if (this.get('bubbles')) {
 
164
                this.addTarget(this.get('bubbles'));
 
165
            }
154
166
            
155
167
        },
156
168
        /**
426
438
 
427
439
 
428
440
 
429
 
}, '3.0.0pr1' ,{requires:['dd-ddm-drop', 'dd-drag'], skinnable:false});
 
441
}, '3.0.0pr2' ,{requires:['dd-ddm-drop', 'dd-drag'], skinnable:false});