nkoterba

Results 16 comments of nkoterba

As @vlad-ursan said, is there any way to pass plugin parameters to the chart's constructor? I'm trying to implement the following (based on https://stackoverflow.com/a/43092029): ```javascript const verticalLinePlugin = { getLinePosition:...

@poppahorse I can't truthfully remember if I tried passing my `lineAtIndex` properties to the options object I passed into the angular-chart directive or not and whether that worked or failed....

@sondreb In short, here is what each of the above commands does: `npm install`: installs the necessary npm/node modules in `node_modules` to concatenate and process google's SVG into the format...

@sincraianul Have you tried running this set of commands standalone: ``` javascript mkdir material-design-icons; cd material-design-icons; git init; git config core.sparsecheckout true; echo "*/svg/production/*_24px.svg" >> .git/info/sparse-checkout; git remote add -f...

@sincraianul I believe this is an issue due to running git in **powershell/cmd** on Windows. Please see: http://stackoverflow.com/a/23289007 Try running the above in a Git Bash prompt and see if...

@sincraianul So you've verified that `sparse-checkout` file is a UNICODE file and has a BOM marker and UNIX style line endings? Just visually inspecting it, especially on Windows, will not...

If you can run the above code block, you don't need to do `npm run init`. You can skip that step. All `npm run init` does is to setup the...

Hmm...so I will look to see if I can switch it to `execSync` on the master to make sure everything works. I'm assuming you just changed it from `exec` to...

@rabbitfr, @srs Same issue just emerged on my box. ``` id "com.moowork.node" version "1.1.1" ``` I tried to remove my `.gradle` directories in my source tree, but still get the...

@srs I think I've discovered what *our* issue was regarding this: We configure our gradle `GulpTask` with `inputs` and `outputs` so that the GulpTask is only run when source files...