<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> |