Add the magic of web components and Polymer (0.5.5) to Meteor!
This package adds core-elements and paper-elements from Polymer.
##How to Install
meteor add ecwyne:polymer-elements
All necessary web components and routing is done for you! All you have to do is use them! See below for how to import these elements and start using them!
Check out the wiki!
<!-- replace dashes with underscores for any element -->
{{> paper_checkbox attrs=attributeObject}}
Template.automatic_helper.helpers({
attributeObject = function(){return {checked: true}}
})
<!--use a helper to import the link tags automatically -->
{{> paper_checkbox_link}}
<!-- Use the component as you normally would -->
<paper-checkbox checked></paper-checkbox>
<!-- Add any <link rel="import" href="[path/to/element]"> tags you will use -->
<link rel="import" href="bower_components/paper-checkbox/paper-checkbox.html">
<!-- Use the component as you normally would -->
<paper-checkbox checked></paper-checkbox>
{{#paper_button}}Submit!{{/paper_button}}