Stefano Stoduto
Stefano Stoduto
This shows an interesting shortcoming of the plugin, but I'm not so sure it will be easy to integrate. From what I understand, in your case you had a table...
expanding a little bit on the previous workaround I ended up with this, which seems to work also in the case of nested elements ```javascript window.Element.prototype.getClientRects = function() { let...
you're right @jcubic, my attempt wasn't to stop the recursion but rather to try to return the empty array in cases where a parent element wasn't visible. But regardless, my...
I needed to do something similar, defaults can be found [here](https://github.com/svrcekmichal/redux-axios-middleware/blob/master/src/defaults.js)
I solved the problem adding the following to my `functions.php`: ```php add_action('after_password_reset', 'revoke_all_tokens', 10, 2); function revoke_all_tokens($user, $password) { delete_user_meta( $user->ID, 'jwt_data' ); return true; } ```
I needed to handle the case when data is an instance of FormData and make sure to propagate the object without changes if it's the case. The bitbucket API requires...
Ah interesting, I didn't notice there was something like that. Anyway in my opinion it would be better to change also the "upload saver" and make it use the http.js...