9.md
This file contains 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
var controller = { | |
__name: 'Drag&DropController', | |
// 初期化処理 | |
__ready: function() { | |
}, | |
// 要素がドロップされた時のコールバック | |
drop: function(org, event, ui) { | |
} | |
}; | |
// コントローラの作成と要素へのバインド. | |
h5.core.controller('#container', controller); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment