James Conkling
James Conkling
Yeah, agreed. Let me take a crack at it and see if I can implement something. Using D3View means there's a good, standard way in which to extend D3, so...
OK, took a first swipe at it. ``` javascript delegate: function(eventName, selector, listener) { var el = this.el; if (listener === undefined) { listener = selector; selector = null; }...
Is there at least a suggested path forward while this is not supported? For cases where there are multiple resources (e.g. `getAsJSON` and `getAsCSV`), I had thought it would work...
@eddielu No, the plugin should work with an array of individual points where the altitude values represent the intensity at that point (as explained in the docs). I am having...
Actually, we could do better by overloading `execute` to better preserve the type of the response, either a SPARQL select query result or ask query result. E.g. ```ts function execute(...
Interesting approach @onpaws . Curious if anyone knows of other solutions for using jss in environments where dynamically rendering html tag content is not an option (e.g. when serving from...
The below html file will log the `script-src` nonce on load ```html var nonce = Array.from(document.getElementsByTagName('meta')).slice(0).find((tag) => tag.httpEquiv === 'Content-Security-Policy').content.match(/script-src.*'nonce-(.*?)'/)[1] console.log(nonce) ``` I need to read up on the CSP...
Yeah, you're spot on, but a few additional points might illustrate the vulnerability I'm talking about (I think... I might be misunderstanding how CSP mitigates injection attacks) - the CSP...
Understood, and I think that's a fine choice. I'm just not sure how (or even if, given the current state of the hooks API) it would be possible to recreate...
@gemma-ferreras the solution I've ended up w/ looks like: ```ts const useStream = ( project: (stream$: Observable) => Observable, data: T, ): R | undefined => { const prev =...