From bfaf9a63c79211b752759def2e84c6f74bb4d6a6 Mon Sep 17 00:00:00 2001 From: perroned Date: Fri, 13 Jun 2014 11:24:59 -0700 Subject: [PATCH] Users list fixed. Fixed an indentation issue where the body of a function was stand-alone and not actually part of the function prototype. Darn Coffeescript --- labs/meteor-client/client/globals.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/meteor-client/client/globals.coffee b/labs/meteor-client/client/globals.coffee index 5abb67d468..5399a6f8a8 100755 --- a/labs/meteor-client/client/globals.coffee +++ b/labs/meteor-client/client/globals.coffee @@ -24,7 +24,7 @@ Handlebars.registerHelper "getCurrentUser", => # toggle state of session variable @toggleUsersList = -> -setInSession "display_usersList", !getInSession "display_usersList" # toggle current state + setInSession "display_usersList", !getInSession "display_usersList" # toggle current state @toggleNavbar = -> setInSession "display_navbar", !getInSession "display_navbar" # toggle current state \ No newline at end of file