Michael Zetterberg

Results 28 comments of Michael Zetterberg

I am looking for this feature too. It seems trivial to implement. Just pass along `this.matches()` to [`var qh = new QueryHandler(handler);`](https://github.com/WickyNilliams/enquire.js/blob/master/src/MediaQuery.js#L33) and make [´QueryHandler#setup`](https://github.com/WickyNilliams/enquire.js/blob/master/src/QueryHandler.js#L23) take that argument and pass...

Looking through the code I see that it can be extended even further to make [`MediaQuery#addHandler`](https://github.com/WickyNilliams/enquire.js/blob/master/src/MediaQuery.js#L36) also call `qh.off()` if the media query does not match. Currently it does call...

@khromov In the meantime you can do something like this as a workaround: ``` js var query = '(max-width: 767px)'; ... enquire.queries[query].matches() // returns true or undefined ``` Note that...

@brikis98 I think you have to do it the other way around, a Cask with Formula dependency. Checkout https://github.com/caskroom/homebrew-cask/blob/master/Casks/docker-machine.rb Cask Ref: https://github.com/caskroom/homebrew-cask/blob/master/doc/CASK_LANGUAGE_REFERENCE.md#depends_on-stanza-details

Sorry meant for this to end up on our fork, but leaving it here in case @moudy surfaces again and wants to continue Broccoli Taco.

@marcenuc Looking at the docs at [broccolijs/broccoli-funnel](https://github.com/broccolijs/broccoli-funnel) they require a new instance of `Funnel` for each filtering. Maybe this is what is causing the bug you experience? In your patch...

We hit this problem too. We're interested in contributing a PR if maintainers can point us in the right direction. @stefanoverna @matjack1

I think this comes down to these lines https://github.com/datocms/gatsby-source-datocms/blob/master/src/hooks/sourceNodes/createNodeFromEntity/item/index.js#L22-L26 from https://github.com/datocms/gatsby-source-datocms/commit/76520c4671c5fb7bc4420313f62f2839a44e9c8a @robertp-harrys For us this change is indeed correct. It is meant to create less nodes (faster Gastby sourcing) and...

@jpriceharrys [If you debug the lines I linked above](https://github.com/datocms/gatsby-source-datocms/blob/master/src/hooks/sourceNodes/createNodeFromEntity/item/index.js#L22-L26) the logic says the following: - If there is no localised field, use the first locale defined in Dato - If...

> Hey @michaellopez @jpriceharrys any news? :) Hi @stefanoverna, I assume your release of `v5.0.0-0` fixed this, so I did not look further into a PR addressing the issues I...