forked from FirstLegoLeague/scoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfgindex.html
30 lines (30 loc) · 1.12 KB
/
fgindex.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="components/bootstrap-css/css/bootstrap.min.css">
<link href="css/materialIcons.css" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<title>FLL Scoring</title>
</head>
<body>
<script src="cordova.js"></script>
<script src="js/config.js"></script>
<script>
require.map = {
'*': {
'services/fs':'services/fs-pg'
}
};
</script>
<script src="components/requirejs/require.js"></script>
<script>
document.addEventListener("deviceready", function() {
require(['main']);
}, false);
</script>
<div ng-controller="mainCtrl" ng-include="mainView" ng-init="setPlatform('phonegap')"></div>
</body>
</html>