Files
polymer/test/unit/dom-bind-elements2.html
2015-11-19 13:27:33 +01:00

12 lines
228 B
HTML

<script>
Polymer({
is: 'x-needs-host',
ready: function() {
if (!this.dataHost) {
throw "No dataHost at ready time";
}
this.config = this.dataHost.getAttribute('config');
}
});
</script>