Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a JIRO link in the header with a link to the jiro github repo #386

Merged
merged 2 commits into from
Jan 13, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: JCasC link text
Signed-off-by: sebastien.heurtematte <[email protected]>
  • Loading branch information
heurtematte committed Aug 6, 2024
commit 46aab071f8cd6043a876a3072046a5be3cc4a59e
4 changes: 2 additions & 2 deletions build/gen-jenkins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ document.addEventListener('DOMContentLoaded', function() {
if (header) {
let newLink = document.createElement('a');
newLink.href = 'https://github.com/eclipse-cbi/jiro/blob/master/instances/${fullName}/target/config.json';
newLink.textContent = 'JIRO';
newLink.textContent = 'JCasC Source';
newLink.style = 'color: white; border-left: 1px solid white; padding-left: 1em; font-size: 1.1em; position: relative; top: 0.2em; left: -1.6em;';
newLink.target = '_blank';
newLink.title = 'JIRO Configuration as Code';
newLink.title = 'JIRO JCasC Configuration as Code';
header.appendChild(newLink);
} else {
console.log('Element with class "header" not found.');
Expand Down
Loading