Sorry for the delayed response.
- Please try the up-to-date Chrome Dev Editor. It's possible that the mentioned template was broken and got fixed since you've submitted the question.
- Also make sure that you either:
- have
index.html
or demo.html
selected when clicking the Run button; or
- right-click on of them and select
Run...
from the context menu.
What might have happened is that you confused Polymer element with a Polymer app. The template that've you used generates an element. It also provides an example of the element's usage in form of demo.html
, and a standard Polymer element description page (based on the core-component-page
element that reads and displays elements properties from the metadata.html
) in form of index.html
. So you have to explicitly run one of those to see something. If you attempt to "run" the element itself (say, click the Run button with my-element.html
selected), you will see a blank screen, just like with any other pure Polymer template, because there is no renderable HTML in there (it's called a template for a reason).
If you do indeed want a Polymer app, consider using JavaScript web app (using Polymer paper elements)
or JavaScript Chrome app (using Polymer paper elements)
project types.