Skip to content

Instantly share code, notes, and snippets.

@enjikaka
Last active August 6, 2017 17:56
Show Gist options
  • Select an option

  • Save enjikaka/a690ee158e635dd34d4a0837de97076f to your computer and use it in GitHub Desktop.

Select an option

Save enjikaka/a690ee158e635dd34d4a0837de97076f to your computer and use it in GitHub Desktop.
class TemplateComponent extends HTMLElement {
/*...*/
get path () {
const query = `link[rel="import"][href*="${this._tagName}"]`;
const target = document.head.querySelector(query);
return target.href.split(document.location.host)[1];
}
/*...*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment