-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 968 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Step 6 - Magix BP</title>
<link rel="stylesheet" type="text/css" href="src/app/assets/cube-min.css">
<link rel="stylesheet" type="text/css" href="src/app/assets/global.css">
<link rel="stylesheet" type="text/css" href="src/app/assets/tables.css">
</head>
<body>
<script src="http://localhost/kissy-1.4.8/build/seed-min.js"></script>
<script src="http://localhost/magix/combos/1.2/kissy/kissy-magix-min.js"></script>
<script>
KISSY.config({
packages: [
{
name: 'app',
path: './src/',//开发阶段我们把放有源码放在src目录中,方便后面的打包上线
debug: true
}
]
})
KISSY.use('magix/magix,node', function(S, Magix) {
Magix.start({
iniFile: 'app/ini',
error: function(e) {
throw e
}
})
})
</script>
</body>
</html>