-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
54 lines (44 loc) · 2.83 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<!-- Build system inserts version -->
<meta name='build.version' content="${build.version}" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Sencha GXT Explorer</title>
<!-- App -->
<link rel="icon shortcut" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="explorer/reset.css" />
<!-- Ext JS 6.7.0 Modern See more in ./extjs/README.md -->
<link href="extjs/theme-material-all-debug.css" rel="stylesheet"/>
<link href="extjs/charts-all-debug.css" rel='stylesheet'/>
<!-- Froala CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.25.0/codemirror.min.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/froala-editor/2.8.5/css/froala_editor.pkgd.min.css" rel="stylesheet" type="text/css" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/froala-editor/2.8.5/css/froala_style.min.css" rel="stylesheet" type="text/css" />
</head>
<body style="margin: 0; padding: 0; background: repeat top left url(examples/images/bg/square.gif);">
<div id="explorer-loading-panel" style="top: 0; right: 0; bottom: 0; left: 0; height: 64px; width: 64px; position: absolute; margin: auto; background: no-repeat center url(examples/images/general/loading.gif);"></div>
<!-- GXT -->
<script language='javascript' src='explorer/explorer.nocache.js'></script>
<iframe src="javascript:''" id="__gwt_historyFrame" style="position:absolute;width:0;height:0;border:0"></iframe>
<!-- Ext JS -->
<script src="extjs/ext-modern-all-debug.js"></script>
<script src="extjs/charts-debug.js"></script>
<!-- Froala JS -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.25.0/codemirror.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.25.0/mode/xml/xml.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/froala-editor/2.8.5/js/froala_editor.pkgd.min.js"></script>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-1396058-29', 'gxt-demo-examples');
ga('send', 'pageview');
</script>
</body>
</html>