Skip to content

Instantly share code, notes, and snippets.

@goofmint
Last active May 11, 2017 05:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goofmint/861b07d76494bd7f47950a1330a65652 to your computer and use it in GitHub Desktop.
Save goofmint/861b07d76494bd7f47950a1330a65652 to your computer and use it in GitHub Desktop.
5.md
// 初期化処理
__ready: function() {
var that = this;
$('#draggable').draggable();
$('#droppable').droppable({
drop: that.ownWithOrg(that.drop),
out: that.ownWithOrg(that.blur)
});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment