initialize: function () {
this.template = $.tpl['profile-form'];
this.model.fetch({
data: $.param({email: localStorage.getItem('user_email')}),
type: 'POST',
}).done(this.render);
},
render: function (eventName) {
this.$el.html(this.template(this.model.toJSON()));
return this;
}
;(function($) {
var $checks = $(".checkbox");
$('#check_all').on('change', function(e) {
var $this = $(this);
$checks.prop('checked', $this.prop('checked'));
});
})(jQuery);