This repository has been archived by the owner on Feb 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
39 lines (28 loc) · 1.52 KB
/
index.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
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<link href="https://serverapi.arcgisonline.com/jsapi/arcgis/3.5/js/dojo/dijit/themes/claro/claro.css" rel="stylesheet" type="text/css" >
<link rel="stylesheet" href="https://serverapi.arcgisonline.com/jsapi/arcgis/3.5/js/esri/css/esri.css" />
<link rel="stylesheet" href="css/styles.css" />
<title id="siteTitle">AGO Admin Tools</title>
<script type="text/javascript">
dojoConfig = { parseOnLoad:true, packages:[{name: "js", location: location.pathname.replace(/\/[^/]+$/, '') + '/js'},{name: "custom", location: location.pathname.replace(/\/[^/]+$/, '') + '/custom'}],cacheBust:true};
</script>
<script type="text/javascript" src="https://serverapi.arcgisonline.com/jsapi/arcgis/3.5/"></script>
</head>
<body class="claro">
<div id="app" class="fullHeight fullWidth">
<!-- Div for loader image -->
<div id="loaderDiv" class="fullHeight fullWidth hidden" style="position:absolute; z-index: 2">
<div style="position: absolute;left:50%;top: 50%;margin-top: -25px;margin-left: -25px;">
<img src="images/loader2.gif">
</div>
</div>
<!-- Transparent Busy DIV to show while processing -->
<div id="busyDiv" class="fullHeight fullWidth hidden" style="position:absolute; z-index: 1; background-color: #989898; opacity: 0.5;"></div>
<!-- Border Container for Main App Content -->
<div id="bcDiv" class="fullHeight fullWidth" style="position:relative; z-index: 0;"></div>
</div>
<script src="js/layout.js" type="text/javascript"></script>
</body>
</html>