-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (67 loc) · 3.12 KB
/
index.html
File metadata and controls
97 lines (67 loc) · 3.12 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/ico" href="img/alu.ico"/>
<meta name="title" content="CaseOLAP">
<meta itemprop="name" content="CaseOLAP">
<meta property="og:title" content="CaseOLAP">
<meta name="description"
content="CaseOLAP">
<meta itemprop="description"
content="CaseOLAP">
<meta id="meta-tag-description" property="og:description"
content="CaseOLAP">
<title>CaseOLAP</title>
<meta itemprop="image"
content="https://avatars3.githubusercontent.com/u/41661812?s=400&u=094ffc3c6cfe28f1908dfe1c0eca1602abe7219b&v=4">
<meta property="og:image"
content="https://avatars3.githubusercontent.com/u/41661812?s=400&u=094ffc3c6cfe28f1908dfe1c0eca1602abe7219b&v=4">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css"
integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<script type="text/javascript" language="javascript" src="https://reactome.org/FireworksJs/fireworks/fireworks.nocache.js"></script>
<script>
//Creating the Reactome pathways overview widget
function onReactomeFireworksReady(){ //This function is automatically called when the widget code is ready to be used
var fireworks = Reactome.Fireworks.create({
"placeHolder" : "fireworksHolder",
"width" : 1200,
"height" : 900
});
//Adding different listeners
fireworks.onFireworksLoaded(function (loaded) {
console.info("Loaded ", loaded);
});
fireworks.onNodeHovered(function (hovered){
console.info("Hovered ", hovered);
});
fireworks.onNodeSelected(function (selected){
console.info("Selected ", selected);
});
}
</script>
</head>
<body>
<!--About Us -->
<div id="aboutUs">
<div class="container">
<div class="row">
<div class="page-header"><h1> Reactom API </h1></div>
<div class="col-md-7">
<div id="fireworksHolder"></div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.0/knockout-min.js"></script>
</body>
</html>