-
Hi there,
when I use `` the `` tag is included in the rendered output, between my `` and loginButton's `` tag.
Is there a way to prevent this and get a clean ``strutcture?
Here's my package list.
…
-
Hi @jagi, thank you for 1.0 update, it's looks nice!
How about to add something like `enum` type to default types?
```
myEnum: {
type: 'enum',
values: ['OPENED', 'NEW', 'CLOSED'],
…
-
I am using
jagi:astronomy 1.0.0-rc.4
jagi:astronomy-slug-behavior 1.0.0-rc.1
jagi:astronomy-timestamp-behavior 1.0.0-rc.1
jagi:astronomy-validators 1.0.0-rc…
-
The following code works fine:
```
TestCollections = new Mongo.Collection('testcollection');
TestCollection = Astro.Class({
name: 'TestCollection',
collection: TestCollections,
fields: {
…
-
I'm interested in transitioning from collection2/document-methods/collection-helpers to this package, but I'm not clear on some things. Maybe I missed them in the docs, but figured I'd file them as an…
-
From the Inheritance section in the docs:
> When fetching the given document from the collection, the transform function will automatically fetch an instance of proper class.
This is true, but not w…
-
Consider the following code:
``` javascript
Meteor.methods({
setPostTitle: function(postId, title) {
Posts.update(postId, { title: title });
}
});
```
It this the Astronomy equivalent?:
```…
-
Hi, how is this package going to work (if at all) with the most likely upcoming SQL support in Meteor? https://forums.meteor.com/t/an-early-look-at-sql-in-meteor/8736
Will it bite each other or comp…
-
I just trying to use astronomy for my new app
1) Does default have the same function with autovalue in collection2? Or refer to defaultValue in collection2?
2) I don't get the reason you create getM…
-
First off, Great package! Very easy to use and lots of cool features.
Ok, I'm grabbing some data from an external source and trying to insert it into my collection. I have a callback function that is…