Jacob Wright
Jacob Wright
When idle checking is on, every mouse move, keystroke, and scroll event calls `wake` which iterates through an array of old timers and clears them (though only effectively clearing the...
git-blame appears to assume a dark UI instead of just using some existing classes to set font color.  Makes it hard to...
I'm getting errors on some of the text being stored in JSON fields. This is one example: > Three glass hearts: ♥️ 💕 � Because JSON is UTF-8, it shouldn't...
OSX supports various gestures with the trackpad. One of the most useful of these is the two-finger swipe which allows you to navigate forward and backward in web apps. This...
When an empty array is used for content, there are no children. Currently it creates 2 empty strings as the children of the element, which then prevents `/>` from being...
https://github.com/sveltejs/svelte/commit/b5931b95d41785bdeffd7f814a599e93918813b6
This should allow cors headers to be added at the end of a call. Really, Response middleware (like ThrowableRouter) should be made stackable so we can have CorsRouter. Maybe something...
The `transformResponse` fails for invalid JSON. Because it wasn't async, it would always return the promise from the response.json() call. Making it async allowed it to fail the JSON and...
When updating an object, if the changes affect indexed properties then the full-text index should be updated to reflex those changes. There could also be a refresh method that allows...