Skip to content

Instantly share code, notes, and snippets.

@frankiefu
Created May 22, 2015 21:56
Show Gist options
  • Save frankiefu/bd77e5454784a0378c2e to your computer and use it in GitHub Desktop.
Save frankiefu/bd77e5454784a0378c2e to your computer and use it in GitHub Desktop.
<dom-module id="x-app">
<script>
Polymer({
is: 'x-app',
properties: {
foo: {
type: String,
value: 'foo'
},
bar: String,
zot: String
},
observers: [
'_observeBarZot(bar, zot)'
],
_observeBarZot() {
console.log(this.foo, this.bar, this.zot); // undefined "bar" "zot"
}
});
</script>
</dom-module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment