5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass<div class="intro">
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass<p>This example shows a simple proxy drag interaction that doesn't require a drop interaction.</p>
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass<div class="example">
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass {{>proxy-drag-source}}
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass<h3>Setting up the Node</h3>
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass<p>First we need to create an HTML Node to make draggable.</p>
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass<div id="demo">Drag Me</div>
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass<p>Now we give that Node some CSS to make it visible.</p>
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass height: 100px;
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass width: 100px;
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass border: 1px solid black;
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass background-color: #8DD5E7;
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass cursor: move;
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass<h3>Setting up the YUI Instance</h3>
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass<p>Now we need to create our YUI instance and tell it to load the `dd-drag` and `dd-proxy` modules.</p>
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav GlassYUI().use('dd-drag', 'dd-proxy');
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass<h3>Making the Node draggable</h3>
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass<p>Now that we have a YUI instance with the `dd-drag` and `dd-proxy` modules, we need to instantiate the `Drag` instance on this Node and add the `DDProxy` plugin.</p>
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav GlassYUI().use('dd-drag', 'dd-proxy', function(Y) {
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass //Selector of the node to make draggable
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass var dd = new Y.DD.Drag({
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass node: '#demo',
5b139d58acfcae4b1bcab5a895706abafc2a87a0Dav Glass }).plug(Y.Plugin.DDProxy); //This config option makes the node a Proxy Drag