22 lines
521 B
JavaScript
Raw Normal View History

/* jshint esversion: 6 */
import {
2016-08-12 12:28:55 -04:00
Template
} from 'meteor/templating';
Template.profile.helpers({
2016-11-07 17:26:02 -05:00
schoolgradenext() {
if(_.contains([null, undefined, ""], Meteor.user().profile.school ||
_.contains([null, undefined, ""], Meteor.user().profile.grade))) {
return "";
2016-10-16 19:55:19 -04:00
} else {
2016-11-07 17:26:02 -05:00
return "disabled";
2016-10-16 19:55:19 -04:00
}
2016-08-12 12:28:55 -04:00
}
});
Template.profile.events({
2016-11-07 17:26:02 -05:00
'click #schoolnext' () {
// Animation to display class section
2016-10-16 19:55:19 -04:00
}
2016-08-12 12:28:55 -04:00
});