Trying to make some simple handlebars helpers
Handlebars.registerHelper(\'if_eq\', function(context, options) { if (context == options.hash.compare) re
the Handlebars object is only available on the client. So make sure you have if (Meteor.isClient) { } wrapped around the helper registration code
if (Meteor.isClient) { }