Simon Herteby
Simon Herteby
I did a quick test and it seems to work :smile: All I did was add this: ```javascript } else { //158 autorun(); //159 _this.$watch(run); //160 } //161 ``` Was...
Ah yes, that would be the ultimate integration :+1:
Another workaround btw is to set the css variables like this: ```elm attribute "style" "--color:blue" ```
I think the capitalization check could even be extended to all typos. For example if you have: ``` type alias User = { firstName : String, lastName : String }...
Could it be that it's not using indexes?
Maybe you could also make it work for fields that have the structure of a meta link, but aren't actually links? For example, I have posts that save their comments...
Sure, like this: ``` { _id, author_id, title, description, date, comments: [ { text, author_id, date } ] } ```
This seems like one of the cases where NoSQL works great, because it eliminates a link without denormalization. Although I just realized a limitation of this: Mongo has $slice to...
Hmm you think so? Anyway, maybe this isn't even necessary to support, especially with Mongo's limitations regarding Array fields.
Ah, but when would you want to modify something returned by Meteor? Wouldn't that be bad practice anyway? Since it would just get overridden when Meteor updates again. I'll keep...