Jeff Titus
Jeff Titus
Before: ``` javascript var inVarTextRef = this._paper.text(pointX, pointY, textToDisplay).attr({ 'text-anchor': 'end', 'font-size': '12px', 'title': textToDisplay, /* testVarA */ 'cursor': 'pointer' }); ```  After: ``` javascript inVarTextRef.attr('text', value); /* value...
#### Motivation It might be interesting to publish data on a new topic, based on the modified response of an existing topic #### Detailed design Like the `execute` function, provide...
I'm not sure if this issue should go here or in the [plotly.py repo](https://github.com/plotly/plotly.py). **Steps to Reproduce** 1. Go here: https://plotly.com/python-api-reference/search.html 2. Open (F12) DevTools 3. Search for something **Result**...
Rather than (or in addition to) using an `onSelect` prop: `this.$emit('select', index)`. Additionally, `onSelect` fires every time a tab is selected, even if it's already the active tab. This may...
**Describe the bug** Properties of an object are considered `undefined` unless set, but an explicit `undefined` value is taken into consideration when determining if `isInt` or `isFloat` succeeds due to...
Using the example code here: https://www.npmjs.com/package/vuln-regex-detector ``` /c/dev/tmp/safe $ node . (node:12616) UnhandledPromiseRejectionWarning: INVALID (node:12616) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function...
When using `type: "scattergl"` for a trace with the range slider enabled, the associated data set does not get rendered to the range slider.  Reproduction: https://codepen.io/jrtitus/pen/poPoyjd 
## Problem Statement If I'm not mistaken, given - `Node()` is a member of `Client` - the `opcua.Node` type does not export `c` https://github.com/gopcua/opcua/blob/0d83d1cc736a5db59bfbb31a167d3e9c6b09c845/client.go#L991-L993 When attempting to mock the `Client`...