Created
October 2, 2012 23:17
-
-
Save tilomitra/3823918 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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