testilo 19.2.2 → 19.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<meta name="keywords" content="accessibility a11y web testing">
|
|
11
11
|
<title>Accessibility score comparison</title>
|
|
12
12
|
<link rel="icon" href="favicon.png">
|
|
13
|
-
<link rel="stylesheet" href="style.css">
|
|
13
|
+
<link rel="stylesheet" href="/scores/style.css">
|
|
14
14
|
</head>
|
|
15
15
|
<body>
|
|
16
16
|
<main>
|
|
@@ -51,7 +51,7 @@ const getTableBody = async bodyData => {
|
|
|
51
51
|
.map(item => {
|
|
52
52
|
const {id, org, url, score} = item;
|
|
53
53
|
const pageCell = `<th scope="row"><a href="${url}">${org}</a></th>`;
|
|
54
|
-
const numCell = `<td><a href="digests
|
|
54
|
+
const numCell = `<td><a href="digests?jobID=${id}">${score}</a></td>`;
|
|
55
55
|
// Make the bar width proportional.
|
|
56
56
|
const barWidth = 100 * score / maxScore;
|
|
57
57
|
const bar = `<rect height="100%" width="${barWidth}%" fill="red"></rect>`;
|