Hello,
I am having some issues creating some custom elements. I am trying to do:
my-element.html:
<link rel="import" href=<?php echo BaseUrl.'external/polymer/0.4.2/polymer/polymer.html';?>>
The above will not work I have to do:
<link rel="import" href="../../../../external/polymer/0.4.2/polymer/polymer.html">
On my index.php the php echo for the html import works, i am thinking it is because JS cant resolve the "php echo" part...
Is what i am trying to do not possible, or are there any work around..?
Thanks.