Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created April 3, 2018 06:29
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/84ae761c75905c7ed772766a1b58e6be to your computer and use it in GitHub Desktop.
Save goofmint/84ae761c75905c7ed772766a1b58e6be to your computer and use it in GitHub Desktop.
const helloWorldController = {
__name: 'HelloWorldController',
'#btn click': function() {
}
};
document.addEventListener('init', (event) => {
const page = event.target;
switch (page.id) {
case 'app':
h5.core.controller('body', helloWorldController);
break;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment