JarkkoLietolahti

Results 14 comments of JarkkoLietolahti

This fork https://github.com/ljack/meteor-joins/tree/patch-1 or this (https://github.com/ljack/meteor-joins/tree/master can't rememebr fix branch it was, I think it's the master branch ;) fixes perak:joins to support multiple cursors for the same collection. I've...

You need to install it as meteor local package. Basically: (from https://dweldon.silvrback.com/local-packages and memory) ``` cd your-meteor-project mkdir packages cd packages git clone https://github.com/ljack/meteor-joins.git (or maybe unzip here?) ``` should...

@perak Ah, thanks for remembering to localise dates too ;) Gave date localisation a quick look and tried to implement straight by adding tap:i18n helper into the date field, but.....

This package seems interesting. It even has translation GUI built in. http://messageformat.meteor.com/docs#quickstart https://github.com/gadicc/meteor-messageformat/tree/v2 and this one supports dates and times etc https://atmospherejs.com/benoitt/intl

But maybe we really don't nead joins.js but rather do the joining in transform in queries? transform seems like THE place to prepare the data JSON.

Tried codemirror 5.6, doesn't work ;) Only black browser window (nothing appears) with just; Uncaught TypeError: Cannot read property 'defineMode' of undefined Uncaught ReferenceError: Spacebars is not defined displayed on...

Ah, users join didn't work for me either but it's doable using transform option: ``` queries/todos { "transform": "function(doc) {doc.sharedToDoc={}; Meteor.users.find({ _id: doc.ownerId }).map(function(user) { doc.owner = user }); Meteor.users.find({...

In situations like this (e.g something required not possible by the meteor kitchen cli / json ) diff and patch has solved the problems. Old goog makefile / grunt /...

Ah, maybe it was that if you give a PAGE same name as the collection it'll crash.

Maybe go with auto-prefix, that's what I's thinking. Easier to implement than warning ;)