Created
January 28, 2015 15:36
-
-
Save gabriel-dehan/9d0bef81643999c43063 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ======== SCHEMA ======= | |
{ | |
_id: "507f1f77bcf86cd799439011", | |
meta_information: { | |
general: { | |
field1: "Hello", | |
field2: "World", | |
}, | |
... | |
}, | |
... | |
} | |
*/ | |
Col = new Mongo.Collection('myCollection'); | |
Rise.Replays.helpers({ | |
title: function() { | |
var meta = this.meta_information.general; | |
return meta.field1 + " " + meta.field2; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment