Daniel Goodwin

Results 6 comments of Daniel Goodwin

Did you ever find a fix for this one?

If anyone else runs into something like this, it turns out I had an ancient version of act which I had previously installed a long time ago. Try updating.

Did you ever find an answer to this one?

I've found a solution. I've tested this and it works. Fix ``` var scrolled = false; $(window).on('scroll', function() { if (!scrolled) { scrolled = true; wow.init(); } }); ``` Basically...

@PaulBiod Why would you need a wow element at the top of the page? The user would already be able to see that without scrolling? Could you not just put...

Here's a temporary workaround which worked for me whilst we wait for a merge. ``` import _ from 'lodash'; import { useCallback, useEffect, useRef, useState } from 'react'; import ReactSpreadsheet...