-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html~
executable file
·104 lines (85 loc) · 3.25 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<title>ROAmber demo</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="ObjectProfile.com" />
<script src="projects/roamber/js/raphael-min.js" charset="utf-8"></script>
<link href="js/lib/bootstrap/css/bootstrap.css" rel="stylesheet" >
</head>
<body>
<script type='text/javascript' src='js/amber.js'></script>
<script type='text/javascript'>
loadAmber({
files: [
'AATrachel.js',
'Roassal-Amber-Extensions.js',
'Roassal2-Core.js',
'Roassal2-Example.js',
/* 'RoassalD3.js',
'ARoassal.js',
'ARoassal-Test.js',
'ARoassal-Demo.js',
'ARoassal-Interaction.js',
'ARoassal-Interaction-Test.js',
'ARoassal-AttachPoint.js',
'ARoassal-AttachPoint-Test.js',
'ARoassal-Event.js',
'ARoassal-Raphaeljs.js',
'ARoassal-Layout.js',
'ARoassal-Layout-Test.js',
'Roassal-Normalizers.js',
'Roassal-Builder-Punchcard.js',
'RoassalExtras-Geo.js',
'RoassalExtras-Geo-Tests.js',
'RoassalExtras-Geo-Tests.js',
'RoassalExtras-Geo-Tests.js',
*/
/* --- Graph-ET ---*/
/*'Graph-ET-Core.js',
'Graph-ET-Core-Tests.js',
'Graph-ET-Axis.js',
'Graph-ET-Examples.js',
'Graph-ET-Util.js',
'Graph-ET-Util-Tests.js',*/
],
prefix: 'projects/roamber/js',
ready: function() {
// smalltalk.Browser._open();
smalltalk.RODemo._init();
}})
window.onbeforeunload = function() {
return 'Do you want to close Amber? All uncommitted changes will be lost.';
};
</script>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"><img src="roassal-logo.png" /></span>
</button>
<a class="brand" href="#"><img src="images/roassal-logo.png" width="20px"/> Roassal 2</a>
<div class="nav-collapse collapse">
> <div class="pull-right">
<ul class="nav">
<li class="active"><a href="#" onClick="smalltalk.Browser._open()">Class Browser</a></li>
</ul>
</div>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="row-fluid"> </div>
<div class="row-fluid"> </div>
<div class="row-fluid"> </div>
<div class="row-fluid">
<div class="span6" style="padding-left:12px">
<div id="roassal-canvas" style="width:640x;height:480px;overflow:scroll;">
</div>
</div>
</div>
<script src="js/lib/bootstrap/js/bootstrap.js"></script>
</body>
</html>