Devin Howard

Results 92 comments of Devin Howard

I like the ratio of deletions to additions! Can you post a bit more about what the broad changes are in this PR and what the eventual goal is if...

In https://github.com/metamaps/metamaps/pull/1045 I was aiming to support these browsers: IE 9+ Edge 12+ FF 38+ Chrome 46+ Opera 33+ Safari 6+ Android 4.4+ iOS 6+ This issue is just about...

For limiting access, probably what I should do is identify specific poorly-performing features and disable those plugins explicitly.

this is great! this will really help I think this has something to do with having a textarea that's not visible. if you hit tab to cycle through inputs, I...

Copied from #554: New reproduction steps (OSX Opera/Chrome) (on a map) Hold Alt and click-drag on a topic to start creating a new synapse Hit Tab before you release the...

@poietic @Connoropolous How is this issue affected once we merge #447? Based on the hackpad link, this looks like we're just about done, right? Once admins can add them, we're...

you'd need two POSTs to the API, and you'd need to be always logged in to metamaps or it'd fail. it does seem doable in a few lines of JS...

CORS will be an issue i think. this will only work in browsers with fetch.... it could probably be written with es5 xhr requests but bleh. this would need to...

ok attempt 2 ``` const map_id = 1349 const url = window.location.toString(); fetch('https://metamaps.cc/api/v2/topics', { credentials: 'include', method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify({ name: document.title, desc:...