Jayson Harshbarger

Results 125 comments of Jayson Harshbarger

Relevant discussion: http://www.codequora.com/questions/25005623/web-components-polymer-and-systemjs Wondering if we need/want Polymer/HTML imports at all.

Yeah, keeping the version numbers in sync between `bower.json` and `package.json` is already a hassle. I imagine someone could write a tool that maps jspm package names down to bower...

Hi @greenify... Looks amazing. Does this line https://github.com/biojs/bio-container/blob/master/main.html#L9 work? If someone imports `main.html` via HTML import the script tags are treated by the browser, not by SystemJS, therefore I think...

~~@herkulano Actually I think using the jspm-bower-endpoint works fine. This sets up a `bower_components` directory and internal references work, the same as using just bower. The only trouble is you...

Sorry, I take that back. I had a `bower_components` directory leftover from previous tests.

Here is a start... https://gist.github.com/Hypercubed/37dade46dbf5e447cc95 There are some issues using d3 in a Web Component. I'm not sure if that is your plan.

BTW.. this is polymer 1.0. Most examples online are 0.5; the syntax is very different.

Hello @herkulano, I have a few comments/questions. Feel free to correct me if I misunderstood something. I am new to web components. 1) As far as I can tell the...

Yes, link tags are not scoped: http://plnkr.co/edit/1sWSIz?p=preview I think the only reason this is working in your demo is that d3 is adding the chart to 'body', outside the component...

Hi @herkulano I'm all for separate files since I plan on using SystemJS and ideally es6. 1) Good catch. 2) Yes, I meant that the `d3.tsv` is dictating the file...