Tac Tacelosky
Tac Tacelosky
yes. But fortunately it works (beautifully). The code is wrapping in a try / catch, but still throws the warning. On Tue, Nov 7, 2023 at 2:29 PM Will Rowe...
Wouldn't it be better to dispatch the event on the DOM element or the jQuery object? Then you could listen for events like ```javascript $('#myForm).formBuilder({}) .on('loaded', function(event, data) { console.log(data);...
Perhaps for a future version, the events could be more specific to formBuilder (or formRender), e.g. .on('loaded.form_builder', ...)
On a related note, the getBarcode signature is inconsistent in BarcodeGeneratorDynamicHTML public function getBarcode($barcode, $type, string $foregroundColor = 'black')
Hi, I see you just dropped support for Guzzle 6 and PHP 7.4 -- great! Perhaps that opens up an opportunity for using other http clients. I'm a fan of...
I made some tweaks, but not sure it's right. Also, I split up the SimpleXMLExtended class into its own file (for PSR-4). But something is wrong with the addCData --...
Unfortunately (and embarrassingly), I'm lousy at writing tests. I think I can write the test in the class you've recommended, but I'm not sure how to run them. I keep...
We're using the bundle to create a list of links during our testing, and in the process of doing that we're creating entities that we don't want persisted. Alas, some...
Alternatively, we could pass $flush to the methods that call ->save(), which currently always call it with true. $flush could be passed to shorten() and propogated. On Thu, Nov 2,...
Agreed. The only downside is that flush shouldn't be inside a loop, but that's an edge case. But the save method definitely should not be flushing entities outside the scope...