Convert line endings from CRLF to LF

This commit is contained in:
Dale Glass 2021-04-02 00:19:12 +02:00
parent 668dbc9ffb
commit 7503ab36b3

View file

@ -1,102 +1,102 @@
<!DOCTYPE html> <!DOCTYPE html>
<!--// <!--//
// brokenURLReport.html // brokenURLReport.html
// //
// Created by Alezia Kurdis on February 22, 2021. // Created by Alezia Kurdis on February 22, 2021.
// Copyright 2021 Vircadia contributors. // Copyright 2021 Vircadia contributors.
// //
// Distributed under the Apache License, Version 2.0. // Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//--> //-->
<html> <html>
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<style> <style>
body { body {
background-color:#000000; background-color:#000000;
color:#ffffff; color:#ffffff;
font-family: Helvetica, Arial, Sans-Serif; font-family: Helvetica, Arial, Sans-Serif;
font-weight: 700; font-weight: 700;
font-size: 12px; font-size: 12px;
text-align: center; text-align: center;
width: 100%; width: 100%;
} }
h1 { h1 {
font-size: 18px; font-size: 18px;
font-weight: 900; font-weight: 900;
} }
table { table {
text-align: left; text-align: left;
width:96%; width:96%;
border: 1px solid #DDDDDD; border: 1px solid #DDDDDD;
border-collapse: collapse; border-collapse: collapse;
} }
td { td {
border: 1px solid #DDDDDD; border: 1px solid #DDDDDD;
padding: 3px; padding: 3px;
} }
td.superheader { td.superheader {
font-size: 18px; font-size: 18px;
text-align: center; text-align: center;
font-weight: 900; font-weight: 900;
background-color:#999999; background-color:#999999;
} }
td.header { td.header {
font-weight: 900; font-weight: 900;
background-color:#777777; background-color:#777777;
} }
a { a {
font-size: 22px; font-size: 22px;
font-weight: 500; font-weight: 500;
} }
a:link { a:link {
color: #00b3ff; color: #00b3ff;
background-color: transparent; background-color: transparent;
text-decoration: none; text-decoration: none;
} }
a:visited { a:visited {
color: #00b3ff; color: #00b3ff;
background-color: transparent; background-color: transparent;
text-decoration: none; text-decoration: none;
} }
a:hover { a:hover {
color: #99e1ff; color: #99e1ff;
background-color: transparent; background-color: transparent;
text-decoration: none; text-decoration: none;
} }
a:active { a:active {
color: #99e1ff; color: #99e1ff;
background-color: transparent; background-color: transparent;
text-decoration: none; text-decoration: none;
} }
</style> </style>
</head> </head>
<body> <body>
<div id="report"> <div id="report">
<div style='text-align: center; width: 100%;'> <div style='text-align: center; width: 100%;'>
<h1> <h1>
<br> <br>
<br> <br>
Testing in progress... Testing in progress...
</h1> </h1>
<br> <br>
<img src='../assets/images/processing.gif'> <img src='../assets/images/processing.gif'>
</div> </div>
</div> </div>
</body> </body>
<script> <script>
EventBridge.scriptEventReceived.connect(function (message) { EventBridge.scriptEventReceived.connect(function (message) {
document.getElementById("report").innerHTML = message; document.getElementById("report").innerHTML = message;
}); });
function selectEntity(id) { function selectEntity(id) {
EventBridge.emitWebEvent(JSON.stringify({ EventBridge.emitWebEvent(JSON.stringify({
"action": "select", "action": "select",
"entityID": id "entityID": id
})); }));
} }
</script> </script>
</html> </html>