pius / meteor-underscore-inflection

underscore.inflection repackaged for Meteor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

After mrt add, getting reference error that underscore is not defined

davidwoody opened this issue · comments

ReferenceError: _ is not defined

This is the error I am getting in terminal. Not sure why...

In order to fix, I wrapped the package code (lines 9-175) in a Meteor method call, and called that method in the startup blocks.

Meteor.startup(function(){
   Meteor.call('underscoreInflectionPackage');
});

This doesn't work