Simon Knox

Results 6 comments of Simon Knox

if `this.view_stool` is false then your `query` is undefined, which causes the error. You can use the `skip` option instead: ```js apollo: { stool: { skip() { return this.view_stool; },...

[This link](http://www.thomasboyt.com/2014/10/06/chrome-message-workaround.html) demonstrates what I think you are trying to achieve. This is devtools specific, but the concept is the same for injected scripts. You can add `window.postMessage` to `main.js`,...

@altano PR works for me (had issue with {{url}} previously)

@Ryuno-Ki sure! Editing the `layout` field on a post in eleventy-base-blog will do it. [Example commit](https://github.com/psimyn/eleventy-base-blog/commit/434db6f5cf1454077227cada26722719312f248c) You can run `npm run build` on Glitch here: https://glitch.com/edit/console.html?psimyn-eleventy-issue-727 Or check locally: ```...

I made PR to change "installation path" to "installation method", which I think it means

I think this will work if you add a third argument to require.ensure Here is an example using `content/index.js` ``` document.addEventListener('click', () => { require.ensure([], () => { var welcome...