Reputation: 1020
I am trying to create simple polymer dart application but dart editor gives me some strange errors like:
Unexpected end tag (head). Ignored.
definition for Polymer element with tag name "login-window" not found.
Here is the simplified version of that app: git repo
What's wrong with it?
Upvotes: 1
Views: 73
Reputation: 6312
In this line of index.html
, you have misspelled link
. As a result the parser is still looking for a closing </ling>
tag. When it doesn't find one, it ignores the closing </head>
to prevent improper nesting of tags.
<ling rel="import" href="web_compo/login_window.html">
Upvotes: 3