summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
Diffstat (limited to 'share')
-rw-r--r--share/web_surfaces/index/main.js19
1 files changed, 8 insertions, 11 deletions
diff --git a/share/web_surfaces/index/main.js b/share/web_surfaces/index/main.js
index fd64a29a40..785e003c9c 100644
--- a/share/web_surfaces/index/main.js
+++ b/share/web_surfaces/index/main.js
@@ -33,20 +33,17 @@ import { Ardour } from '/shared/ardour.js';
function printIndex (index) {
for (const group of index) {
- const surfaces = group.surfaces;
- const groupPath = group['path'];
- const groupPathSpan = document.querySelector(`#${groupPath} span`);
-
- groupPathSpan.innerHTML = group['diskPath'];
+ const span = document.querySelector(`#${group.path} span`);
+ span.innerHTML = group.diskPath;
- if (surfaces.length > 0) {
- const ul = document.querySelector(`#${groupPath} > ul`);
- surfaces.sort((a, b) => a.name.localeCompare(b.name));
+ if (group.surfaces.length > 0) {
+ const ul = document.querySelector(`#${group.path} > ul`);
+ group.surfaces.sort((a, b) => a.name.localeCompare(b.name));
- for (const surface of surfaces) {
+ for (const surface of group.surfaces) {
const li = document.createElement('li');
li.innerHTML = `<li>
- <a href="${groupPath}/${surface.path}/">${surface.name}</a>
+ <a href="${group.path}/${surface.path}/">${surface.name}</a>
<p>${surface.description}</p>
</li>`;
ul.appendChild(li);
@@ -54,7 +51,7 @@ import { Ardour } from '/shared/ardour.js';
} else {
const p = document.createElement('p');
p.innerHTML = '<p>No surfaces found</p>';
- document.getElementById(groupPath).appendChild(p);
+ document.getElementById(group.path).appendChild(p);
}
}