Richard Scarrott

Results 78 comments of Richard Scarrott

I experienced this warning during server side rendering (SSR) because I was using an older version of `react-apollo` so just wanted to leave this link here to help out the...

Hi there, I've actually written two carousel plugins, the one you're using [jQuery.carousel](https://github.com/richardscarrott/jquery-carousel) and the newer more developed version built on top of the widget factory [jQuery.rs.carousel](https://github.com/richardscarrott/jquery-ui-carousel). The good news...

Good spot, feel free to send a pull request and I'll merge it in!

Yes and no. The [autoscroll extension](https://github.com/richardscarrott/jquery-ui-carousel/blob/master/src/js/jquery.rs.carousel-autoscroll.js) has two methods, `_stop` and `_start` however they're both private. They're used internally to stop and start the autoscrolling when you hover over the...

I've not got around to writing an extension to support multiple rows, partly due to the lack of time and partly because features such as variable width items and continuous...

You could do something like this: ``` master.carousel({ create: function () { $(this).find('.rs-carousel-runner').on('drag', function () { slave.find('.rs-carousel-runner').css('left', $(this).css('left')); // if using `translate3d` left will need to be changed for transform....

If you're unable to change the code that pumps the html out serverside then you could always manipulate the html before instantiating the carousel client side, either so you have...

FYI, this is the complete `afterNock` function I'm using ```ts const parseNockDefs = ( nockDefs: (nock.NockDefinition & { rawHeaders: string[] })[] ) => { return nockDefs.map(def => { try {...

@swalkinshaw is it still correct to assume Relay isn't compatible with the storefront api?

`apollo-client` it is then! Thanks.