Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created February 14, 2017 01:23
Show Gist options
  • Save goofmint/a948bd91dcbe951dae37d214a9aa82f0 to your computer and use it in GitHub Desktop.
Save goofmint/a948bd91dcbe951dae37d214a9aa82f0 to your computer and use it in GitHub Desktop.
4.md
(function($) {
var pageController = {
__name: 'PageController',
'button.draggable-popup click': function(context, $el) {
h5.ui.popupManager.createPopup('sample', 'ドラッグ可能ポップアップ', 'サンプルです', null, {
draggable: true
}).show();
},
};
h5.core.expose(pageController);
})(jQuery);
$(function() {
h5.core.controller('body', PageController);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment