Skip to content

Instantly share code, notes, and snippets.

@DaveVoyles
Created March 13, 2015 01:11
Show Gist options
  • Save DaveVoyles/e51d84d6afad3554eff7 to your computer and use it in GitHub Desktop.
Save DaveVoyles/e51d84d6afad3554eff7 to your computer and use it in GitHub Desktop.
polymer-ready event
<head>
<link rel="import" href="path/to/x-foo.html">
</head>
<body>
<x-foo></x-foo>
<script>
window.addEventListener('polymer-ready', function(e) {
var xFoo = document.querySelector('x-foo');
xFoo.barProperty = 'baz';
});
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment