Jacob Wright
Jacob Wright
@AbelMakihara good catch. Here is an updated fix: **Fix:** ```coffeescript trackIdleStatus = -> timer = null # No array, just a reference to the last timeout id wakeUp = ->...
Ahh, I see the problem. I'm using Atom Light UI and Atom Dark Theme. So because you're using the UI's background color rather than the background color for the gutter...
Thanks @dmnd! That will be a great help. I'll see what I can come up with.
I haven't looked into it. Things have been busy. I'll try and come back to it eventually.
`ResizeObserver` is looking pretty good now. https://caniuse.com/#search=ResizeObserver Probably still want to keep the fallback for older browsers, but it would be worth adding it now as most browsers support it....
Another place where this falls down is bubbled native events. In my app I am listening to the `input` event being bubbled up from form elements inside a form. Typescript...
Not sure if it works, but I asked Chat GPT 4 to reverse the Gist posted above and got https://gist.github.com/jacwright/40c50faa29257c8b76666c1e077352f1. 😄
Hyphenated tags are part of the W3C spec and are required when creating custom elements via the Web Component [Custom Element spec](http://w3c.github.io/webcomponents/spec/custom/). They are required in the Angular and Polymer...
I've downloaded and installed the example just today and cannot get the facebook/google integrations to work (didn't try twitter). No errors in the console. Has electron or auth0 change something...
Sure. ```typescript // redis.ts import { createClient } from 'redis'; run(); async function run() { const client = createClient(); client.on('error', err => console.log('Redis Client Error', err)); client.on('connect', () => console.log('Redis::connect'));...