Skip to content

Instantly share code, notes, and snippets.

@blasten
Last active January 26, 2016 21:08
Show Gist options
  • Save blasten/e93e6d585feaf67e53d8 to your computer and use it in GitHub Desktop.
Save blasten/e93e6d585feaf67e53d8 to your computer and use it in GitHub Desktop.
<dom-module id="x-foo">
<div>test</div>
</dom-module>
<script>
Polymer.X_CONSTANT = 1;
Polymer({
is: 'x-foo',
properties: {
foo: {
type: String
}
},
observers: [
'_setup(foo)'
],
_setup: function() {
var ctx = Polymer.X_CONSTANT;
console.debug('ctx', ctx);
//Polymer.X.CONSTANT = 2;
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment