Liam

Results 8 comments of Liam

The 2 differing PHP versions give the same output for ` php -i | grep 'libxml'`. Could they still be different? PHP 7.4.10 (cli) (built: Sep 9 2020 06:36:14) (...

I have dug further into this and it looks like bootstraps `defineJQueryPlugin(Popover)` and its containing `onDOMContentLoaded` is getting called before the `window.jQuery = jQuery` line in `main.js`. So `window.jQuery` is...

This also worked fine for Bootstrap 4, which we are upgrading from. Created a separate branch on that repo to prove that Bootstrap 4 works https://github.com/liamkeily/bootstrap-examples/compare/vite-and-jquery...liamkeily:bootstrap-examples:vite-and-jquery-bootstrap4

Thanks @skeets23 that did actually work

While having a quick look at this i came across [api/js/lunr-data.json](https://github.com/mistic100/jQuery-QueryBuilder/blob/eb0638609806b212635c2f0e18cf3d24a4864bfa/api/js/lunr-data.json) - do you remember if this is a generated file @mistic100 and if so how to generate it?

I'm afraid I don't have time to tackle this at the moment, if anyone else has the time feel free to pick this up. Tagging @stephencmorton @dethell as they helped...

I can confirm that adding `nonce=""` to various places in https://github.com/spatie/ignition/blob/main/resources/views/errorPage.php got the error page displaying, although still a few wonky bits to chase down I wonder if there's a...

I ended up solving this (and some other things) by extending https://github.com/spatie/laravel-csp/blob/main/src/Policies/Policy.php and implementing the following method ``` public function shouldBeApplied(Request $request, Response $response): bool { if (config('app.debug') && (...