From 9df47a896af3195e17fd5a1fbf4070679bf48ef2 Mon Sep 17 00:00:00 2001 From: Kenneth Jao Date: Fri, 2 Sep 2016 12:23:05 -0400 Subject: [PATCH] Syntax error --- hourglass/client/profile/profile.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hourglass/client/profile/profile.js b/hourglass/client/profile/profile.js index 0b4e95a..0dfa5af 100644 --- a/hourglass/client/profile/profile.js +++ b/hourglass/client/profile/profile.js @@ -147,8 +147,7 @@ Template.profile.helpers({ classHolderHeight() { // Dimensions the container for the classes return 0.26 * window.innerHeight.toString() + "px"; }, - profClassTabColor(status) { // Change this [Supposed to show the current mode that's selected via color] -       + profClassTabColor(status) { // Change this [Supposed to show the current mode that's selected via color]     if (Session.equals("profClassTab",status)) {             return themeColors[Meteor.user().profile.preferences.theme].highlightText;         } else {             @@ -156,7 +155,7 @@ Template.profile.helpers({ }     }, profClassTab(tab) { // Tells current class - if (Session.get("profClassTab",tab)) { + if (Session.equals("profClassTab",tab)) { return true; } else { return false;