PolymerElements / iron-component-page

A reusable landing page for elements
36 stars 32 forks source link

Can't identify components in different folders #90

Open vaffonso opened 8 years ago

vaffonso commented 8 years ago

Iron component src doesnt work when I use a file to import component(s) I want documentation.

this works <iron-component-page id="componentdoc" src="../script/my-component/my-component.html"></iron-component-page>

this does not work <iron-component-page id="componentdoc" src="all-imports.html"></iron-component-page> assuming I have this content on all-imports.html <link rel="import" href="../script/my-component/my-component.html">

justinfagnani commented 8 years ago

@garlicnation will this be effected by #86 ?

vaffonso commented 8 years ago

Yeap, the transitive was the property I needed to make that work.

Thanks!

Lull3rSkat3r commented 8 years ago

@vaffonso, transitive worked for me, but it also brings other elements I don't want to show in documentation. Is this what is expected?