Skip to content

Instantly share code, notes, and snippets.

@blasten
Last active October 13, 2015 20:03
Show Gist options
  • Save blasten/861b640568f8b8268f89 to your computer and use it in GitHub Desktop.
Save blasten/861b640568f8b8268f89 to your computer and use it in GitHub Desktop.
<dom-module id="x-example">
<style>
:host {
display: block;
}
</style>
<template>
<div id="text">x-example</div>
</template>
<script>
Polymer({
is: 'x-example',
properties: {
test: {
type: String,
value: '',
observer: '_testChanged'
}
},
_testChanged: function(newTest, oldTest) {
console.log('_testChanged(', newTest, ',', oldTest, ')');
}
});
</script>
</dom-module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment