Christopher Cook

Results 10 comments of Christopher Cook

+1 This would be a useful feature for use with custom controls within a cell which have their own rendering functionality (e.g. a backbone view).

Quick update to this issue. I was able to resolve it by updating grunt-usemin/lib/configwriter.js to the version from @buddhike: f966221f4d58bbcf63b4a4b2f3a6373817295ecf (see also #298) and then update my app/elements/greeting.html file as...

Thanks for following up on this @stephanebachelier .

I was experiencing a similar issue, my solution was to do this: ``` scss @mixin my-icon($name, $content) { #{".my-icon-#{$name}"} { &:before { content: unquote("\"#{$content}\""); } } } @include my-icon(check-mark, \e01c);...

+1 Here's a workaround that I implemented in my `gulpfile.js`. This example allows creating a watch task that will only lint JavaScript files that have changed: ``` js var gulp...

I ran into this same issue with testing webpack 5. It isn't clear in the documentation, so I ask, is dependOn supposed to function in such a way that it...

I've created a Gist that demonstrates my workaround, which works to continue SSI processing if an ssi.compile() fails due to an invalid reference. See https://gist.github.com/cookch10/b85e3ca0a372fa7b7dff

@ivan-kleshnin Google of node exif yields several results. I've used https://github.com/gomfunkel/node-exif in conjunction with this lib (and node Promise) to normalize image rotation based on exif data.

The fact that an image appears incorrectly rotated is subjective. This is due to the medium used to view the image (os, app, browser, etc.) and whether that medium is...