Name | Date | Size | |
---|---|---|---|
.. | 2012-04-05 01:53:04 | 100 | |
build.constrain.properties | 1970-01-01 01:00:00 | 0 | |
build.constrain.xml | 1970-01-01 01:00:00 | 0 | |
build.ddm-base.properties | 1970-01-01 01:00:00 | 0 | |
build.ddm-base.xml | 1970-01-01 01:00:00 | 0 | |
build.ddm-drop.properties | 1970-01-01 01:00:00 | 0 | |
build.ddm-drop.xml | 1970-01-01 01:00:00 | 0 | |
build.ddm.properties | 1970-01-01 01:00:00 | 0 | |
build.ddm.xml | 1970-01-01 01:00:00 | 0 | |
build.delegate.properties | 1970-01-01 01:00:00 | 0 | |
build.delegate.xml | 1970-01-01 01:00:00 | 0 | |
build.drag.properties | 1970-01-01 01:00:00 | 0 | |
build.drag.xml | 1970-01-01 01:00:00 | 0 | |
build.drop.properties | 1970-01-01 01:00:00 | 0 | |
build.drop.xml | 1970-01-01 01:00:00 | 0 | |
build.gestures.properties | 1970-01-01 01:00:00 | 0 | |
build.gestures.xml | 1970-01-01 01:00:00 | 0 | |
build.plugin.drop.properties | 1970-01-01 01:00:00 | 0 | |
build.plugin.drop.xml | 1970-01-01 01:00:00 | 0 | |
build.plugin.properties | 1970-01-01 01:00:00 | 0 | |
build.plugin.xml | 1970-01-01 01:00:00 | 0 | |
build.proxy.properties | 1970-01-01 01:00:00 | 0 | |
build.proxy.xml | 1970-01-01 01:00:00 | 0 | |
build.scroll.properties | 1970-01-01 01:00:00 | 0 | |
build.scroll.xml | 1970-01-01 01:00:00 | 0 | |
build.xml | 2012-02-29 20:58:26 | 955 | |
docs | 2012-03-01 22:07:18 | 9 | |
HISTORY.md | 2012-04-03 09:44:28 | 8.3 KiB | |
js | 2012-04-05 01:53:04 | 10 | |
Makefile | 2012-03-01 07:51:34 | 79 | |
meta | 2012-02-29 20:58:26 | 3 | |
README.md | 2011-08-05 20:48:02 | 760 | |
tests | 2012-04-05 01:53:04 | 10 |
README.md
Drag and Drop
=============
The Drag and Drop Utility allows you to create a draggable interface efficiently,
buffering you from browser-level abnormalities and enabling you to focus on the
interesting logic surrounding your particular implementation. This component
enables you to create a variety of standard draggable objects with just a few
lines of code and then, using its extensive API, add your own specific
implementation logic.
YUI().use('dd-drag', function(Y) {
var dd = new Y.DD.Drag({
node: '#drag'
});
});
### File Structure and Module Info
Source Files:
ddm-base.js ==> Base DragDrop Manager
ddm.js ==> Adds shim support
ddm-drop.js ==> Adds Drop support
drag.js ==> Main drag class
proxy.js ==> Adds proxy support to Drag
constrain.js ==> Adds constrain support to drag
scroll.js ==> Adds scroll support to drag
drop.js ==> Drop Support
dd-plugin.js ==> Node plugin for Drag
dd-drop-plugin.js ==> Node plugin for Drop
Module Names:
dd-ddm-base ==> Base DragDrop Manager
dd-ddm ==> Adds shim support
dd-ddm-drop ==> Adds Drop support
dd-drag ==> Main drag class
dd-proxy ==> Adds proxy support to Drag
dd-constrain ==> Adds constrain support to drag
dd-scroll ==> Adds scroll support to drag
dd-drop ==> Drop Support
dd-plugin ==> Node plugin for Drag
dd-drop-plugin ==> Node plugin for Drop
dd ==> All Drag & Drop related code
Build Files:
dd-ddm-base.js ==> Base DragDrop Manager
dd-ddm.js ==> Adds shim support
dd-ddm-drop.js ==> Adds Drop support
dd-drag.js ==> Main drag class
dd-proxy.js ==> Adds proxy support to Drag
dd-constrain.js ==> Adds constrain support to drag
dd-scroll.js ==> Adds scroll support to drag
dd-drop.js ==> Drop Support
dd-plugin.js ==> Node plugin for Drag
dd-drop-plugin.js ==> Node plugin for Drop
Rollup File:
dd.js ==> dd-ddm-base, dd-ddm, dd-ddm-drop, dd-drag, dd-proxy, dd-constrain, dd-scroll, dd-drop, dd-plugin, dd-drop-plugin