forked from evoluteur/evolutility-ui-jquery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
executable file
·71 lines (52 loc) · 2.18 KB
/
Copy pathtest.html
File metadata and controls
executable file
·71 lines (52 loc) · 2.18 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="icon" type="image/png" href="../favicon.png">
<meta name="description" content="Evolutility :: Test" /></head>
<link href="../dist/css/dependencies.min.css" rel="stylesheet" />
<link href="../dist/css/demo.css" rel="stylesheet" />
<link href="../dist/css/evolutility.css" rel="stylesheet" />
<script src="../dist/dependencies.min.js" type="text/javascript"></script>
<script src="demo.js" type="text/javascript"></script>
<script src="../js/ui-models/apps/test.data.js" type="text/javascript"></script>
<script src="../js/ui-models/apps/test.js" type="text/javascript"></script>
<script src="../dist/evolutility.js" type="text/javascript"></script>
<title id="headTitle">Test :: Evolutility</title>
</head>
<body>
<div class="evo-header">
<div class="evo-logo"><a href="../index.html"><span>evol</span>utility<span>.js</span></a></div>
<ul class="evo-head-links">
<li><a href="index.html">demo</a></li>
<li><a href="../doc/index.html">doc</a></li>
<li><br><a class="sel" href="test.html#test/edit" data-id="test">TEST</a></li>
<li class="spaced"><a href="https://github.com/evoluteur/evolutility" target="_new">GitHub</a></li>
</ul>
<div class="clearfix"></div>
</div>
<div class="evo-title2">
<h1 id="title">Test</h1>
</div>
<div class="evo-content2">
<div id="evol" class="">
<p>This app is made to easily test Evolutility. It provides an object which uses all possible field types.</p>
<h4><a href="#test/list" data-id="test"><img src="pix/color_wheel.png" class="evo-icon-16">Test object</a></h4>
</div>
<div class="clearfix"></div>
</div>
<script>
$(document).ready(function(){
// - create sample data if none is there
createSampleDataIfEmpty('test');
// - run App
new Evol.App({
el:$('#evol'),
uiModels: [uiModels.test]
}).render();
});
</script>
<div class="footer">© 2015 Olivier Giulieri</div>
</body>
</html>