Skip to content

Instantly share code, notes, and snippets.

@thosakwe
Last active February 25, 2016 01:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thosakwe/533dc82d54daa99aa4f8 to your computer and use it in GitHub Desktop.
Save thosakwe/533dc82d54daa99aa4f8 to your computer and use it in GitHub Desktop.
A WebStorm file template for a Polymer v1.0 element.
<link rel="import" href="/path/to/polymer/polymer.html">
<dom-module id="#[[$Id$]]#">
<template></template>
<script>
Polymer({
is: '#[[$Id$]]#',
ready: function() {
//Do yo thang...
}
});
</script>
</dom-module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment