-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrun.html
More file actions
48 lines (46 loc) · 1.85 KB
/
run.html
File metadata and controls
48 lines (46 loc) · 1.85 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no" />
<meta name="renderer" content="webkit">
<title>Flow-UI Demo</title>
<meta content="Flow-UI文档,Flow-CLI,front-flow" name="Keywords">
<meta content="Flow-UI 是一套组件化UI框架,支持定制主题,主要服务于前台及中后台产品。" name="Description">
<link href="/docs/favicon.ico" rel="icon">
<link href="/docs/css/style.css" rel="stylesheet">
<script type="text/javascript">
if(window.location.href.indexOf('https')===0){
document.write('<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />');
}
</script>
<!--[if lt IE 9]><script src="/docs/lib/H5shiv.js"></script><![endif]-->
<script src="/docs/lib/sea.js" id="seajsnode"></script>
</head>
<body>
<a href="//refined-x.com" title="前端路上" style="position: absolute;right: 0;top:0;padding:.5em;">前端路上</a>
<script type="text/javascript">
document.title = window.opener.DemoTitle + ' Demo';
var NewDoc = window.opener.DemoHtml+
'<script type="text\/javascript">'+
'define("demo",function(require) {\
var $ = require("jquery");\
var base=require("base");'+
window.opener.DemoJs+'});'+
'seajs.use("demo");'+
'<\/script>';
document.write(NewDoc);
</script>
<div style="display: none;">
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?f10103677155b485824f29def715eb5d";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</div>
</body>
</html>