dd-drop-plugin-debug.js revision 8a6b21bbf4ce4b186b37c9f3623a198acd13b950
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic UpdaterYUI.add('dd-drop-plugin', function(Y) {
11e9368a226272085c337e9e74b79808c16fbdbaTinderbox User
bef75d63d74f58abc0f834ed271526672777ba29Automatic Updater
bef75d63d74f58abc0f834ed271526672777ba29Automatic Updater /**
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater * Simple Drop plugin that can be attached to a Node via the plug method.
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater * @module dd
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater * @submodule dd-drop-plugin
bef75d63d74f58abc0f834ed271526672777ba29Automatic Updater */
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater /**
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater * Simple Drop plugin that can be attached to a Node via the plug method.
bef75d63d74f58abc0f834ed271526672777ba29Automatic Updater * @class Drop
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater * @extends DD.Drop
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater * @constructor
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater * @namespace Plugin
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater */
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater var Drop = function(config) {
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater config.node = config.host;
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater Drop.superclass.constructor.apply(this, arguments);
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt };
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt
cd32f419a8a5432fbb139f56ee73cbf68b9350ccTinderbox User /**
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater * @property NAME
10b865e9187fc77cae02f106ddcc9e03eecdfe06Tinderbox User * @description dd-drop-plugin
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater * @type {String}
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater */
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater Drop.NAME = "dd-drop-plugin";
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater /**
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater * @property NS
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater * @description The Drop instance will be placed on the Node instance under the drop namespace. It can be accessed via Node.drop;
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater * @type {String}
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater */
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater Drop.NS = "drop";
10b865e9187fc77cae02f106ddcc9e03eecdfe06Tinderbox User
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater Y.extend(Drop, Y.DD.Drop);
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater Y.namespace('Plugin');
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater Y.Plugin.Drop = Drop;
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt
fc2381b901eb162810f54a11cc512b95f55a60dfAutomatic Updater
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt}, '@VERSION@' ,{skinnable:false, requires:['dd-drop']});
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt