Skip to content

Instantly share code, notes, and snippets.

@tilomitra
Created October 2, 2012 23:17
Show Gist options
  • Save tilomitra/3823918 to your computer and use it in GitHub Desktop.
Save tilomitra/3823918 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Drag Touch</title>
<script type="text/javascript" src="../../../../build/yui/yui.js"></script>
<style>
#myDrag {
width:300px;
height:300px;
background: red;
}
</style>
</head>
<body>
<div id="myDrag"></div>
<script>
YUI().use('dd-drag', 'dd-gestures', 'event-gestures', function (Y) {
var dd = new Y.DD.Drag({
node: '#myDrag'
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment