forked from SuperMap/iClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.html
More file actions
26 lines (26 loc) · 1.17 KB
/
editor.html
File metadata and controls
26 lines (26 loc) · 1.17 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
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<head>
<title>iClient Classic 示例代码</title>
<link rel="shortcut icon" type="image/x-icon" href="../../web/img/favicon.ico"/>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<script type="text/javascript" include="jquery,bootstrap,admin-lte,jquery.scrollto,ace" src="../js/include-web.js"></script>
<link rel="stylesheet" href="../css/common.css">
<link rel="stylesheet" href="../css/header.css">
<link rel="stylesheet" href="../css/sideBar.css">
<link rel="stylesheet" href="../css/editor.css">
</head>
<body class="hold-transition skin-blue sidebar-mini sidebar-collapse">
<div class="wrapper"></div>
<script>
$('.wrapper').load('../section/editor.html', function () {
$('.nav-header').load('../section/header.html');
var body = $('body');
body.append("<script type='text/javascript' src='./config.js'><\/script>");
body.append("<script type='text/javascript' src='../js/sidebar.js'><\/script>");
body.append("<script type='text/javascript' src='../js/editor.js'><\/script>");
});
</script>
</body>
</html>