I also created a very basic converter for Polymer elements that does not have 0.8 code yet. To see it go to: http://chuckh.github.io/road-to-polymer/compare-code.html?el=core-menu-button, then click on the Convert button. Next look for lines with CONVERTED comment to see what changed.
The convert button will show for any Polymer repositories that don't have 0.8 code yet. Still lots of functionality to add. What do you think?
To view this discussion on the web visit https://groups.google.com/d/msgid/polymer-dev/a201d884-9abe-469a-ae2a-b4ea00e29ab2%40googlegroups.com.Follow Polymer on Google+: plus.google.com/107187849809354688692
---
You received this message because you are subscribed to the Google Groups "Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email to polymer-dev...@googlegroups.com.
I have use the below conversion steps either by changing the code, or adding comments about changes needed.
polymer-element
<dom-module id=<polymer-element name="x-foo" layout horizontal wrap><link rel="import" href="../layout/layout.html"> to top with other imports<link rel="import" type="css" href="my-awesome-button.css"> from `<template> to <dom-module><style></style> from <template> to <dom-module>template see https://www.polymer-project.org/0.8/docs/devguide/experimental.html
other
<div>First: {{first}}</div> TO <span>{{first}}</span><br>on-click="{{handleClick}}" to on-click="handleClick"properties: { }see https://www.polymer-project.org/0.8/docs/migration.html#styling
<style></style> from <template> to <dom-module> (as noted above)Follow Polymer on Google+: plus.google.com/107187849809354688692
---
You received this message because you are subscribed to the Google Groups "Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email to polymer-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/polymer-dev/8bd74a79-2458-4bfd-bf4b-8d2a5f6e248b%40googlegroups.com.