-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.html
70 lines (64 loc) · 2 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<html>
<head>
<title>Application Title</title>
<style>
#loading-mask {
background-color: white;
height: 100%;
position: absolute;
left: 0;
top: 0;
width: 100%;
z-index: 20000;
}
#loading {
height: auto;
position: absolute;
left: 40%;
top: 40%;
padding: 2px;
z-index: 20001;
}
#loading a {
color: #225588;
}
#loading .loading-indicator {
background: white;
color: #444;
font: bold 13px Helvetica, Arial, sans-serif;
height: auto;
margin: 0;
padding: 10px;
}
#loading-msg {
font-size: 10px;
font-weight: normal;
}
</style>
<!-- Ext JS -->
<link rel="stylesheet" type="text/css" href="/extjs/resources/css/ext-all.css">
<link rel="stylesheet" type="text/css" href="/css/style.css">
<script type="text/javascript" src="/extjs/ext-all-dev.js"></script>
<!-- Application -->
<script type="text/javascript" src="config/environment.js"></script>
<script type="text/javascript" src="config/development.js"></script>
<script type="text/javascript" src="config/router.js"></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body>
<div id="loading-mask" style=""></div>
<div id="loading">
<div class="loading-indicator">
<img src="/images/logo.gif"><br/>
<img src="/images/loader.gif" width="32" height="32"
style="margin-right:8px;float:left;vertical-align:top;"/>
Application title - <a href="http://your.company.com" target="_blank">company.com</a>
<br/><span id="loading-msg">Loading application...</span>
</div>
</div>
<form id="history-form" class="x-hide-display">
<input type="hidden" id="x-history-field"/>
<iframe id="x-history-frame"></iframe>
</form>
</body>
</html>