Bogdan Raica

Results 17 comments of Bogdan Raica

I have not tested the full functionality unfortunately as I'm I'm only using this for VueTranslation:generate to generate the translation file. The translate function I use is something custom since...

I ended up doing: ``` datatable.on('datatable.init', function (){ var buttons = document.querySelectorAll('.dataTableParent button') buttons.forEach(function(button) { button.addEventListener('click', function (){ ... your button action here }) }) }) ``` I'm also not...

This is what I use. ``` insertText(text) { var range, sel = window.getSelection(); if (sel.rangeCount) { range = sel.getRangeAt(0); range.insertNode(document.createTextNode(text)); } }, ```

Checking the source code for 'checked' section, I see: ``` if checked !== null { if !fetch value, attributes["value"] { let value = null; } if checked === value {...

Can you include the web server error_log for that specific crash? It doesn't make sense to have everything crash by just instantiating a class.

Unfortunately this is not that simple, it also needs a way to be able to accept reading the header only from specific trusted proxies, you can't just take the forwarded_proto...

While I do see your point, I'm unsure if this should be something that we should fix or needs a fix. The `Cookies` class is indeed meant to be used...

I've tested this as well, it seems the query string somehow gets cached or something ``` SELECT `invoice`.`id` AS `id`, `invoice`.`total` AS `total` FROM `invoice` WHERE `invoice`.`id` IN ( SELECT...

Tinkering with it, I learn bit more. @tingleiwuyan it seems this was made like that by design for performance reasons, and indeed only triggers whenever you do queries that have...