Update the README.md to Polymer 1.1

This commit is contained in:
Abdón Rodríguez Davila
2015-09-10 10:52:18 +02:00
parent 453cae589a
commit 40c455aa3c
+7 -6
View File
@@ -120,13 +120,14 @@ Polymer({
```html
<!-- add style to your element -->
<dom-module id="my-styled-namecard">
<style>
/* This would be crazy in non webcomponents. */
span {
font-weight: bold;
}
</style>
<template>
<style>
/* This would be crazy in non webcomponents. */
span {
font-weight: bold;
}
</style>
<div>
Hi! My name is <span>{{myName}}</span>
</div>