-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 loc) · 1.26 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Welcome to OpenShift</title>
<link href="public/globe.css" rel="stylesheet" type="text/css">
</head>
<body onload="onload();">
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/queue.v1.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script src="/public/mbostock/raw/4090846/globe.js"></script>
<section class='container'>
<hgroup>
<input type="text" name="enter" class="enter" value="" id="input"/>
<input type="button" value="click" OnClick="kk()"/>
<script type="text/javascript">
var lolz;
function onload() {
lolz = document.getElementById('input');
}
function kk(){
//alert(input.value);
transition(input.value);
}
</script>
</hgroup>
</section>
<section class='container'>
<hgroup>
<h1></h1>
</hgroup>
</section>
<section class='container'>
<hgroup>
<p id="message">Test Deploy #24 - Welcome to your Node.js application on OpenShift</p>
<p id="log"></p>
</hgroup>
</section>
<table id="table"></table>
</body>
</html>