Simen Bekkhus
Simen Bekkhus
Only movement I've seen in this space is https://github.com/microsoft/TypeScript-DOM-lib-generator/issues/1207, which doesn't have much movement
@trojanowski any chance of merging and releasing this? 🙏 It fixes the error I'm seeing in our app 🙂
`loading` should not be `true` when refetching, you should check if `networkStatus` is `4`: https://www.apollographql.com/docs/react/api/react-apollo/#datanetworkstatus
@malsup ping :smile:
@doublerebel I published it now. https://www.npmjs.com/package/block-ui @malsup Just give me a ping, and I'll transfer ownership
I have nothing to do with this, I just pushed it to npm. See #114 I also don't use this project, so I have no intention of working on it.
@JulianRussbach Thanks! We tried it, and the report I got was that it seems to work the same as my code above; it doesn't skip to the next tabbable element....
@JulianRussbach That works! Thanks :D Ended up with this code: ``` js var proxiedBlock = $.fn.block; $.fn.block = function () { var $elements = proxiedBlock.apply(this, arguments); $elements.find(':not([tabindex=-1])').attr('tabindex',-2); return $elements; };...
Already existing `tabindex`es were messed up, so ended up with this slightly hackish one... If you don't have custom `tabindex=0` (or any other values), the previous one should be good...
@malsup Would you accept a PR adding package.json? It's the official way to distribute jQuery plugins. https://plugins.jquery.com/