-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathindex.html
executable file
·66 lines (51 loc) · 2.25 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<noscript>
<meta http-equiv="refresh" runat="server" content="0;noscript/index.php" />
</noscript>
<!--
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript" src="extjs/examples/shared/include-ext.js"></script>
<!--
<script type="text/javascript" src="extjs/examples/shared/options-toolbar.js"></script>
-->
<link rel="stylesheet" type="text/css" href="resources/css/desktop.css" />
<title>ExtDesk</title>
<!--
<link rel="stylesheet" type="text/css" href="extjs/resources/css/ext-all-blue.css" id="idTheme" />
<link rel="stylesheet" type="text/css" href="resources/css/desktop.css" />
<script type="text/javascript" src="extjs/ext-all-debug.js"></script>
-->
<script type="text/javascript" src="client/ux/Notification/Notification.js"></script>
<link rel="stylesheet" type="text/css" href="client/ux/Notification/css/notification.css" />
<script type="text/javascript">
Ext.Ajax.disableCaching = false;
Ext.Loader.setConfig({enabled:true});
Ext.Loader.setPath({
'Ext.ux.desktop' : 'client/js',
'MyDesktop' : 'client',
'MyDesktop.Modules' : './modules'
});
Ext.require('MyDesktop.ExtDesk');
Ext.require('Ext.data.Store');
Ext.require('MyDesktop.MyExtDesk');
var userStore;
var myDesktopApp;
var apps = [];
Ext.onReady(function () {
MyExtDesk = new MyDesktop.MyExtDesk();
MyExtDesk.load();
});
</script>
</head>
<body>
<div id="loading">
<span class="title"> </span>
<span class="logo"> </span>
</div>
<a href="http://www.sencha.com" target="_blank" alt="Powered by Ext JS" id="poweredby"></a>
</body>
</html>