Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created December 11, 2016 12:44
Embed
What would you like to do?
7.md
$(function(){
var mainController = {
__name : 'h5.ui.container.MainController',
calendarController: h5.ui.components.Calendar,
__meta : {
calendarController: {
rootElement: '#container'
},
},
__init: function(){
this.$find(".select:first").attr("checked", true);
},
'.select click': function(context, $el) {
this.calendarController.setSelectMode($el.val());
},
};
h5.core.controller('body', mainController);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment