bjhijmans

Results 9 comments of bjhijmans

We have come up with a different trick. Instead of throwing an exception for Backspace, we preventDefault and implement our own backspace function. ```javascript /** * If Tribute is open...

In your examples you have routes to destroy a singleton. Shouldn't you also be able to create and store one if it doesn't exist?

I used the following in the latest version of scribe v4 based on what @shopisaur posted: ```js const divs = document.querySelectorAll('.content h1[id], .content h2[id]'); document.addEventListener('scroll', (e) => { divs.forEach(item =>...

Hey! That looks good. I can check it out when I'm back at work on Monday. I'm not sure about your decision to make it a separate class, though. There's...

I checked it out. There's a bug currently, `readData()` is private in both `SettingStore` and `CachedSettingStore`, but it is called from `SettingStore`, so it calls that version and skips caching....

I ended up copying ElasticDocumentAdapter and adding `'refresh' => 'wait_for'` when appropriate there and injecting it into the service container from the AppServiceProvider and that fixes my issue completely. However,...

Here's the whole thing. I added a config key for the one setting I wanted to add in the myapp namespace. Obviously this isn't modular at all, but I think...

I don't see how. Here's the code of one of the methods in the Client: ```php /** * Allows to perform multiple index/update/delete operations in a single request. * *...

While you are waiting for this to get reviewed (which took months last time), you can tell composer to use a fork on github. **Use your own fork for this....