-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprevious.html
44 lines (40 loc) · 1.26 KB
/
previous.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
<!DOCTYPE html>
<html>
<head>
<title>VDW</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/functions.js"></script>
<style type="text/css">
body, html {
height: 100%;
}
</style>
</head>
<body>
<script>
// get the system platform using node.js
var os = require('os');
//require('nw.gui').Window.get().showDevTools();
// document.write('You are running on ', os.platform());
$(function(){
$("#Menu").load("menu.html");
});
var path = require("path");
var gui = require('nw.gui');
var dir = path.join(process.cwd(),'results');
// gui.Shell.showItemInFolder(dir);
gui.Shell.openItem('VDW_manual.pdf')
//window.open("index.html");
</script>
<div id="Menu"></div>
<!-- Use any element to open the sidenav -->
<span onclick="openNav()" style="color: chartreuse;background-color: black;"><B> ☰ Menu </B> </span>
<div id="main">
<div class="container" id="container"><br>
</div>
</div>
</body>
</html>