Last active
February 25, 2016 00:17
-
-
Save blasten/6f177a1cba423dd6004c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <dom-module id="x-test"> | |
| <template> | |
| <div>[[test]]</div> | |
| </template> | |
| <script> | |
| Polymer({ | |
| is: 'x-test', | |
| properties: { | |
| test: { | |
| type: String, | |
| value: 'foo' | |
| }, | |
| changeTest: { | |
| type: Boolean | |
| } | |
| }, | |
| observers: ['_observer(changeTest)'], | |
| _observer: function() { | |
| this.test = 'bar'; | |
| } | |
| }); | |
| </script> | |
| </dom-module> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment