Skip to content

Commit

Permalink
Remove compound binding limitation from primer.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Oct 10, 2015
1 parent 1035e2d commit b1c1b35
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions PRIMER.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<a name="feature-list"></a>
Below is a description of current Polymer features, followed by individual feature guides.

See [the full Polymer.Base API documentation](http://polymer.github.io/polymer/) for details on specific methods and properties.
See [the full Polymer.Base API documentation](http://polymer.github.io/polymer/) for details on specific methods and properties.

<a name="polymer-micro"></a>
**Basic Custom Element sugaring**
Expand Down Expand Up @@ -1085,17 +1085,10 @@ Polymer({

Properties of the custom element may be bound into text content or properties of local DOM elements using binding annotations in the template.

To bind to textContent, the binding annotation must currently span the entire content of the tag:

```html
<dom-module id="user-view">
<template>

<!-- Supported -->
First: <span>{{first}}</span><br>
Last: <span>{{last}}</span>

<!-- Not currently supported! -->
<div>First: {{first}}</div>
<div>Last: {{last}}</div>

Expand Down

0 comments on commit b1c1b35

Please sign in to comment.