Skip to content

Instantly share code, notes, and snippets.

@higumachan
Created April 3, 2015 09:28
Show Gist options
  • Save higumachan/d7853ef23dea93212f62 to your computer and use it in GitHub Desktop.
Save higumachan/d7853ef23dea93212f62 to your computer and use it in GitHub Desktop.
function drag(callback){
var downFlag;
mouseDown(function(x, y){
downFlag = true;
});
mouseUp(function(x, y){
downFlag = false;
});
mouseMove(function(x, y){
if (downFlag){
fn(x, y);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment