-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
22 lines (21 loc) · 904 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title> Drones </title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="/node_modules/material-design-lite/dist/material.css">
<script src="node_modules/traceur/bin/traceur.js"></script>
<script src="node_modules/es6-module-loader/dist/es6-module-loader-dev.js"></script>
<script src="node_modules/material-design-lite/dist/material.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyA8y3D67A81dHIcdIvZuD_qvR4D2oVsrLg&callback=googleMapsCallback"
></script>
</head>
<body>
<script>
function googleMapsCallback() {
System.paths['jquery'] = 'node_modules/jquery/dist/jquery.js'
System.import('src/app.js')
}
</script>
</body>
</html>