tjallingt

Results 18 comments of tjallingt

As one of the maintainers of this project I'd like to say that we very much appreciate your "thank you" message. Lovely to hear that you were able to seamlessly...

Seems to be an issue with HRM, webpack or Gatsby. The `debug` package is an indirect devDependency used by webpack-dev-server, babel, eslint and more. The only way you can reference...

We are not touching the contents of the playerVars so I'm not sure whats going on there... Maybe someone can jump in and look at whats going on?

Will have to setup a test case to see this in action. Thank you for opening an issue 👍

At the very least we should have a section in the readme warning people that this is necessairy (i was not aware of this before you told me either). I'm...

Webpack is giving you an error: the default import of the debug2 package is not a funtion, I'm not familiar with debug2 and without seeing the code i'm not sure...

> Prevent inline javascript. This means you will have to keep your javascript logic in separate files from your html Definitely a good idea, the problem being that a lot...

seems like another reason we might want `fieldId` on [`Column`](https://tableau.github.io/extensions-api/docs/interfaces/column.html) https://github.com/tableau/extensions-api/issues/207

Well in the end you should be able to cherry pick the commits you like and leave out the ones you don't from this PR, the ideas I listed are...

``` c++ std::map::iterator smoothedItr = smoothed.begin(); while (smoothedItr != smoothed.end()) { unsigned int label = smoothedItr->first; if(!existsCurrent(label)) { smoothedItr = smoothed.erase(smoothed.find(label)); } else { smoothedItr++; } } ``` Seems to...