SymphonyElectron/js/moreInfo/more-info.html
Vishwas Shashidhar afdaa39836 ELECTRON-907: add more info menu item
- add a new menu item that displays version information about the app
- bump up the version number
2018-11-28 16:42:46 -08:00

46 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>More Information</title>
<style>
html, body {
margin: 0;
height: 100%;
font-family: sans-serif;
}
.version-text {
flex: 1;
font-size: 1em;
color: #2f2f2f;
}
.content {
text-align: center;
display: flex;
flex-direction: column;
padding-top: 20px
}
.logo {
margin: auto;
}
</style>
</head>
<body>
<div class="content">
<span><b>Version Information</b></span>
<span id="electron" class="content"></span>
<span id="chromium" class="content"></span>
<span id="v8" class="content"></span>
<span id="node" class="content"></span>
<span id="openssl" class="content"></span>
<span id="zlib" class="content"></span>
<span id="uv" class="content"></span>
<span id="ares" class="content"></span>
<span id="httpparser" class="content"></span>
</div>
</body>
</html>