0e328f3911
This catches the development branch up with v1.0.39 in master.
63 lines
931 B
HTML
63 lines
931 B
HTML
<html>
|
|
<head>
|
|
<link href="stylesheets/manifest.css" rel="stylesheet" type="text/css" />
|
|
<style>
|
|
|
|
body {
|
|
text-align: center;
|
|
background-color: #2090EA;
|
|
color: white;
|
|
font-size: 14px;
|
|
}
|
|
|
|
img {
|
|
margin-top: 2em;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<img src='images/icon_250.png'>
|
|
|
|
<div>
|
|
<script>
|
|
document.write('v', window.config.version);
|
|
</script>
|
|
</div>
|
|
<div>
|
|
<script>
|
|
var states = [];
|
|
|
|
if (window.config.environment !== 'production') {
|
|
states.push(window.config.environment);
|
|
}
|
|
if (window.config.appInstance) {
|
|
states.push(window.config.appInstance);
|
|
}
|
|
|
|
document.write(states.join(' - '));
|
|
</script>
|
|
</div>
|
|
<div>
|
|
<a href="https://signal.org">signal.org</a>
|
|
</div>
|
|
|
|
<script type='text/javascript' src='js/jquery.js'></script>
|
|
<script>
|
|
$(document).on('keyup', function(e) {
|
|
if (e.keyCode === 27) {
|
|
window.closeAbout();
|
|
}
|
|
});
|
|
</script>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|