Skip to content
Snippets Groups Projects
Commit d93c7b9c authored by Martin Lowe's avatar Martin Lowe :flag_ca: Committed by Christopher Guindon
Browse files

Add button with project ID to heading of project sections


Signed-off-by: Martin Lowe's avatarMartin Lowe <martin.lowe@eclipse-foundation.org>
parent 9066090d
No related branches found
No related tags found
No related merge requests found
......@@ -141,6 +141,12 @@
for (var i = 0; i < el.length; i++) {
el[i].append(h2);
}
const headerAnchor = document.createElement('a');
headerAnchor.setAttribute('class', 'btn btn-xs btn-secondary margin-left-10');
headerAnchor.setAttribute('href', 'https://projects.eclipse.org/projects/' + project.project_id);
headerAnchor.textContent = project.project_id;
h2.appendChild(headerAnchor);
createProjectList(json_object, projectOpts, el);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment