Jeff Titus

Results 8 issues of Jeff Titus

Before: ``` javascript var inVarTextRef = this._paper.text(pointX, pointY, textToDisplay).attr({ 'text-anchor': 'end', 'font-size': '12px', 'title': textToDisplay, /* testVarA */ 'cursor': 'pointer' }); ``` ![image](https://cloud.githubusercontent.com/assets/1756049/8531911/959cada4-23f8-11e5-9869-3ad5f6d9bef7.png) 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...

feature

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...

feature_request

**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...

🐛 bug

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. ![image](https://user-images.githubusercontent.com/1756049/123635783-0ddf7700-d7ea-11eb-952d-d2efebd060f4.png) Reproduction: https://codepen.io/jrtitus/pen/poPoyjd ![image](https://user-images.githubusercontent.com/1756049/123636322-b7bf0380-d7ea-11eb-9d25-289c122746e8.png)

## 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`...