aboutsummaryrefslogtreecommitdiff
path: root/backend/app/views/index.scala.html
blob: f1da55581544a78e1f6cce70e1311c9acec00948 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@main(""){
	<span id='ct' ></span>

	<object id="attitude" type="image/svg+xml" data="@routes.Assets.at("images/instruments/attitude.svg")" width="300px" height="300px">Cannot load or display SVG image.</object>

	<object id="heading"  type="image/svg+xml" data="@routes.Assets.at("images/instruments/heading.svg")" width="200px" height="200px">Cannot load or display SVG image.</object>

	<script type="text/javascript">

		window.onload = function () {
			var frontend = new Frontend('#attitude', '#heading')
			frontend.main()
		}
	</script>
}