-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (61 loc) · 1.93 KB
/
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
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
72
73
74
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--Ext lib and UX components-->
<script src="../extjs-4.2.2/ext-all-debug.js" type="text/javascript"></script>
<!--Application files-->
<script src="index.js" type="text/javascript"></script>
<style type="text/css">
body {
margin : 0;
font : 300 13px/1.625 "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.type {
color : #999;
}
.clsName {
font-weight : 1.2em;
}
body > section {
float : left;
width : 25%;
}
section h4 {
white-space : nowrap;
}
#header {
background : #074e7c;
padding : 10px;
color : #fff;
font-size : 1.3em;
background : -webkit-gradient(linear, left top, left bottom, from(#074e7c), to(#095f93));
}
#version1, #version2 {
font-weight : bold;
color : yellow;
}
.filters {
float : right;
}
ul {
padding-left : 0;
}
li {
margin-left : 20px;
}
li.clsName {
margin-bottom : 10px;
}
</style>
<title>Ext Version Diff</title>
</head>
<body>
<div id="header">Comparing Ext JS <span id="version1"></span> to <span id="version2"></span>
</div>
<section id="one"><h4><input type="checkbox" id="chkAdded" checked>Added Class Symbols</h4></section>
<section id="two"><h4><input type="checkbox" id="chkRemoved" checked>Removed Class Symbols</h4></section>
<section id="three"><h4><input type="checkbox" id="chkChangedStatic" checked>Changed Static Class Members</h4></section>
<section id="four"><h4><input type="checkbox" id="chkChangedProt" checked>Changed Prototype and Instance Members</h4></section>
</body>
</html>