You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when another <imported-template> instance for same url is attached to DOM we create new <link> element. Luckyli it does not hit the networking performance, as according to HTML Imports spec it will not download it again, however we just pollute <head>.
We could just keep map of already imported templates, to match url with already processed tempalte, ready to get stamped.
The text was updated successfully, but these errors were encountered:
Currently when another
<imported-template>
instance for same url is attached to DOM we create new<link>
element. Luckyli it does not hit the networking performance, as according to HTML Imports spec it will not download it again, however we just pollute<head>
.We could just keep map of already imported templates, to match url with already processed tempalte, ready to get stamped.
The text was updated successfully, but these errors were encountered: