Andrew Taft

Results 12 issues of Andrew Taft

### Version 5.2.0 ### Reproduction link [https://codepen.io/ataft/pen/dyWxpyG](https://codepen.io/ataft/pen/dyWxpyG) ### Steps to reproduce There are many open issues where various elements are overlapping with each other. Axis names overlap with axis labels,...

bug
pending
en

When dragging multiple items, only one item is displayed as you drag, as shown here: ![image](https://user-images.githubusercontent.com/11670864/125536002-67aaecd6-86ed-40c9-b626-7c34aaf57396.png) Ideally, it would do one of the following: 1. Show all the items being...

When going from XML to JS, the "processors.stripPrefix" allows you to remove the prefix. Is it possible for the Builder to have an option for addPrefix? ``` const jsObj =...

I posted a [similar message](https://groups.google.com/forum/#!topic/c3js/sANt7-Nw1Ow) in the Google groups, but didn't get any response, so am posting here. Last year, C3.js was [declared un-maintained](https://github.com/c3js/c3/issues/1965), so someone forked it and started...

Occasionally [this line](https://github.com/ecomfe/zrender/blob/master/src/animation/Animator.ts#L34) in Animator.js throws the error below. The `out` variable is usually an array of numbers, but very infrequently it is just a number, thus causing the error....

There is an actively maintained fork of SlickGrid at https://github.com/6pac/SlickGrid

When the next step requires page scrolling, the onShow registered helper function is being called twice. As shown below: ...steps: [ { onShow: 'onShowTourStep' },... ]... hopscotch.registerHelper('onShowTourStep', function () {...

bug

The "hopscotch.showStep(idx)" function accepts a string parameter, but it will convert the currStepNum to a string, thus breaking the next and prev because it cannot add +/-1. The showStep function...

docs

The following code works fine in v3.30.0: ``` const query = { where: { or: [ { username: username }, { email: username } ] } }; self.userModel.findOne(query, function (err,...

bug
major
help wanted
regression

This should be `if(orderBy)` rather than `if(!orderBy)`