Ayrton Sparling
Ayrton Sparling
:disappointed: Can you point me in the right direction to report the bug please?
Well it first arose while I was using my theme. My theme has an input box that allows you to change the background image location on the fly. But when...
https://github.com/FallingSnow/lightdm-webkit2-material2/blob/master/src/components/Background.jsx#L89
I know. But shouldn't it just fail if they attempt to access something they can't. The image should only load if the greeter is actually able to find it and...
Thanks for confirming this, it's good to know I haven't just been missing a semicolon for the last day. Might approach a webkit2gtk dev with this later and ask if...
I will argue that the current error detection system has given me numerous false alarms, but I have a few questions. - Will a `try/catch` [really be able to catch...
> I'm not sure what your jsfiddle is intended to show? Could you explain it? Sorry. I knew I should have added a better example. [If any async error happens...
I believe lots0logs has tried a heartbeat solution before, I don't know how it turned out. I think the issue is how to actually determine an error has occurred. A...
> That said, no sense in re-inventing the wheel if hooking into window.onerror could potentially solve the problem on its own. Agreed. > Presumably the heartbeat would fail to respond...
Did some testing with `window.onerror` today. Looks like it might be viable. Didn't generate any false positives with material2. ``` window.onerror = function(msg, url, lineNumber) { console.error('Error thrown:', msg); //...