Data binding in Polymer 1.0

https://www.polymer-project.org/1.0/api/#dom-bind

<body>
  <template is="dom-bind">
    <h1>{{title}}</h1>
    <paper-slider value="{{title}}" style="width: 100%"></paper-slider>
  </template>
</body>

This took way too long to figure out. I only found out by looking at the Polymer unit tests.

 
13
Kudos
 
13
Kudos

Now read this

Migrating to Socket.IO 1.0

There are a few things not covered in the official guide that I had to figure out on my own. Here is an example of the changes required for a mock application using namespaces, rooms, query strings, and a reverse proxy. Client # var... Continue →