Chris Lloyd

Results 45 comments of Chris Lloyd

Yes this is an issue with the touch event, Safari doesn't have Touch.client[XY] (https://developer.mozilla.org/en-US/docs/Web/API/Touch/clientX#browser_compatibility) so that value is undefined at https://github.com/jerosoler/Drawflow/blob/abb241b98f77abab0b7c6c66d6791db15eee85be/src/drawflow.js#L535 Changing this to ```js deletebox.style.top = (e.clientY || e.pageY)...

This did not work as is - the event comes through as a `touchstart`. If I change `touchmove` to `touchstart` then it works.

Running the following two commands in this order works for me with https://tenancyforlaravel.com/ to cover both central and tenant models, correctly appending/updating docblocks (this assumes you have a tenant set...

If you need this and don't mind doing it manually, here's how you can build for PHP 8.3 on Ubuntu 22.04. All done in a Docker container. The process uses...

Apparently it's the number of calls to __(), which only takes 33us per call (if I'm reading this right) but it reached up to 90,000 calls from the ~2500 times...

See the left hand column of the table I posted at the top, it's between 10 and 100 per_page. I don't _think_ we are doing anything unusual on top the...

Hi @tonioseiler. It's not directly possible using only the configuration, but it can be easily achieved by subclassing the provider and overriding `getConfig`. This way you can provide a different...

Hi @yannickdesmadryl, I’m not sure exactly why you’d get that error, but it might be worth checking out the lodata tests themselves and copy how they do their requests ?

I believe this may have the same source problem as https://github.com/flat3/lodata/issues/255#issuecomment-1140432893 - can you confirm?

Resolved in https://github.com/flat3/lodata/releases/tag/v5.14.0