blob: 9f262528d3f9c386d7aa8ab53432531c42c3b0ea [file] [log] [blame]
<sky>
<import src="flights-app.sky" as="FlightsAppElement"/>
<style>
sky {
height: 100%;
}
</style>
<script>
// TODO(esprehn): Work around a bug where having <flights-app /> in the
// page doesn't render anything until the first input event.
window.addEventListener("load", function() {
document.querySelector("sky").appendChild(new FlightsAppElement());
});
</script>
</sky>