Can't identify components in different folders
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">
@garlicnation will this be effected by #86 ?
Yeap, the transitive was the property I needed to make that work.
Thanks!
@vaffonso, transitive worked for me, but it also brings other elements I don't want to show in documentation. Is this what is expected?