Skip to content

Commit

Permalink
Be clearer that fooChanged watches any property.
Browse files Browse the repository at this point in the history
  • Loading branch information
jyasskin committed Sep 12, 2014
1 parent 8408bef commit 666cfdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/polymer/polymer.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ createdCallback | created | An instance of the element is created.
attachedCallback | attached | An instance of the element was inserted into the DOM.
- | domReady | Called when the element's initial set of children are guaranteed to exist. This is an appropriate time to poke at the element's parent or light DOM children. Another use is when you have sibling custom elements (e.g. they're `.innerHTML`'d together, at the same time). Before element A can use B's API/properties, element B needs to be upgraded. The `domReady` callback ensures both elements exist.
detachedCallback | detached | An instance was removed from the DOM.
attributeChangedCallback | attributeChanged | An attribute was added, removed, or updated. **Note**: to observe changes to [published properties](#published-properties), use [changed watchers](#change-watchers).
attributeChangedCallback | attributeChanged | An attribute was added, removed, or updated. **Note**: [Changed watchers](#change-watchers) are often easier to use and can watch either ordinary properties or attribute changes matching [published properties](#published-properties).
{: .table .responsive-table .lifecycle-table }

### The polymer-ready event {#polymer-ready}
Expand Down

0 comments on commit 666cfdf

Please sign in to comment.