2016-09-05 00:08:59 -04:00
|
|
|
|
/* jshint esversion: 6 */
|
|
|
|
|
|
import {
|
2016-08-12 12:28:55 -04:00
|
|
|
|
Template
|
|
|
|
|
|
} from 'meteor/templating';
|
2016-08-10 00:25:19 -04:00
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
});
|
2016-08-10 00:25:19 -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
|
|
|
|
});
|