Created
May 11, 2017 05:17
-
-
Save goofmint/69756f91b7820aa919c4cd9e1164b27a to your computer and use it in GitHub Desktop.
6.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
$(function() { | |
var controller = { | |
__name: 'SortableController', | |
// 初期化処理 | |
__ready: function() { | |
}, | |
// ドロップ時のコールバック | |
stop: function(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