meteor-polymer
meteor-polymer copied to clipboard
Example project
Hi,
Do you have a example project or would you like to share one?
I would love to see an example too. I'm struggling with event binding atm. Should I use Template.element.events
for that or a more jQuery approach?
+1 for an example of better integrating both worlds
+1
+1
https://github.com/ecwyne/meteor-polymer-16
Here's an extremely basic example.
I see. you can't do those head import through the package?
The polymer platform is imported for you, but you don't want the package to import all of the components for you. You want control over which ones are loaded on the client. You only want to send what you need to over the wire.
See https://github.com/ecwyne/meteor-polymer/blob/master/import.html
+1 on @jasperkennis question. @marcodejongh how should be done the event binding in a Meteor app?
Hi all check out this little test project I made: It could be a nice example? I added famous.js too... because overkill but awesome.
https://github.com/theprojectabot/polymer-meteor-famous-views/tree/master
@grigio whatsup with the event binding? I just used the normal Template.foobar.events
for my POC:
https://github.com/marcodejongh/polymer-meteor/blob/MOAR_REACTIVITY/client/pages/social.js#L26
+1