Andrew Kirwin
Andrew Kirwin
I would like spreadable arguments to avoid having to do this: ```hbs {{! simplified example! }} {{#if @model}} {{yield}} {{else if @models}} {{yield}} {{else}} {{yield}} {{/if}} ``` One would _expect_...
@lolmaus Why would it be bad practice? What about higher order components like: ```handlebars {{! parent.hbs }} {{yield (hash child=(component "child" aria-activedescendant=this.activeChild)}} ``` (p.s. I'm aware of the static-analysis argument)
My use case is: ```handlebars {{yield (hash foo=(component "foo") ...this.moreThings) }} ```
Are we required to implement something like the above in the case where the `scrollContainer` is the document body? For example, on a page *without* `VerticalCollection` - scrolling, navigating to...
Just ran into this when creating a _changeset_ to collect form input data, and noticed it wasn't being sent to the server :/
Ok thanks for the info. Would it be possible to make `message` a function? ```javascript 'declaration-property-value-blacklist': [{ 'font-weight': ['500'] }, { message: function(prop, value) {} }], ``` Then the onus...
I set myself a simple task of listing the files in a folder. I have iterated through them using `filesListFolder`, but couldn't see _an example_ of how to link to...
Right, totally missed that! Cheers. So that lets me download a file, but not build a hyperlink to that file though...
I'm also getting this with 0.2.0 ``` Command failed: git -c core.safecrlf=false add "." && git commit -m "rebuild" ``` ================================================================================= ENV Summary: TIME: Thu Oct 04 2018 10:36:27 GMT+0100...
My use-case for wanting a public way to create snapshots is purely for unit testing purposes. Some Serializer methods accept a snapshot as a parameter. I could send in a...