Glenn Eggleton

Results 19 comments of Glenn Eggleton

This is definitely less readable. You should be explicit.

I didn't PR cause I was feeling lazy, but given that its literally 5-6 lines of code, ok.

I'll be able to do some more updates on this repo within the next month.

Hey, I will have to look into some solutions. For now I would recommend putting the resource string into the container to save some typing. In theory I think I...

Hmm that's an interesting thought. If we wanted to use the app hooks we would need to wrap the Slim App to intercept those method calls.

this is basically the solution from QT. The key you exchange for has a limited lifespan and if you don't use it to refresh then you have to start the...

I kinda wanted the same thing... so I started here. https://github.com/geggleto/form-builder

Yeah, I was able to enable desktop usage by simply disabling PUSH links, but ,my app is not very large. The method I posted above should enable it as well.

either solution does not break mobile

Nope... ``` // Attach PUSH event handlers // ========================== window.addEventListener('touchstart', function () { isScrolling = false; }); window.addEventListener('touchmove', function () { isScrolling = true; }); window.addEventListener('touchend', touchend); window.addEventListener('click', /*function (e)...