forked from jifuwei/workflow-designer-web
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·31 lines (28 loc) · 1 KB
/
index.html
File metadata and controls
executable file
·31 lines (28 loc) · 1 KB
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
<html lang="zh">
<head>
<meta charset="utf-8"/>
<!-- saved from url=(0014)about:internet-->
<title>审批流编辑器</title>
<!-- 采用Pace.js加载进度条 -->
<link rel="stylesheet" href="scripts/jquery/plugins/pace/themes/pace-theme-loading-bar.css" />
<script>
paceOptions = {
elements: true
};
</script>
<script src="scripts/jquery/plugins/pace/pace.min.js"></script>
<script src="scripts/jquery/jquery-1.8.3.min.js"></script>
<link rel="stylesheet" type="text/css" href="scripts/easyui/themes/gray/easyui.css">
<script src="scripts/easyui/jquery.easyui.min.js"></script>
<script type="text/javascript">
$(window).load(function(){
Pace.stop();
});
</script>
</head>
<body class="easyui-layout">
<div data-options="region:'center',border:false" style="overflow:hidden">
<iframe id="iframe" style="width: 100%; height: 100%;" src="designer/designer.html" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
</body>
</html>