Is there a spellchecker that plays nice with Meteor? I'm looking for something open-source and that cooperates in a purely JS environment.
Asked
Active
Viewed 175 times
0
-
Any spell checker should work fine. Try placing the minified library file in `client/compatibility` & initializing it on your template's rendered callback – Tarang Apr 14 '14 at 05:19
-
@Akshat, is there one that you recommend? Also, is client/compatibility a special directory? I hadn't heard of that used in a traditional Meteor structure before. Thanks for your help. – user592419 Apr 14 '14 at 18:06
-
`client` is special, but `compatibility` is not. Anything under `client` will be served only to the client. I’ve more often seen `client/lib` for external libraries that you want to send to the client; see https://github.com/oortcloud/unofficial-meteor-faq#where-should-i-put-my-files – Geoffrey Booth Apr 15 '14 at 02:17