Make app-name link to landing page and change the start page to what-is-hawkbit.md
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
[](https://www.openhub.net/p/hawkbit)
|
[](https://www.openhub.net/p/hawkbit)
|
||||||
[](https://gitter.im/eclipse/hawkbit?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
[](https://gitter.im/eclipse/hawkbit?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||||
|
|
||||||
[Documentation](README)
|
[Documentation](what-is-hawkbit.md)
|
||||||
[Release notes](release-notes)
|
[Release notes](release-notes)
|
||||||
[GitHub](https://github.com/eclipse-hawkbit/hawkbit)
|
[GitHub](https://github.com/eclipse-hawkbit/hawkbit)
|
||||||
|
|
||||||
|
|||||||
@@ -62,8 +62,12 @@ SPDX-License-Identifier: EPL-2.0
|
|||||||
svgEl.setAttribute('width', '200');
|
svgEl.setAttribute('width', '200');
|
||||||
svgEl.removeAttribute('height');
|
svgEl.removeAttribute('height');
|
||||||
svgEl.style.setProperty('--logo-color', '#F0EEEA');
|
svgEl.style.setProperty('--logo-color', '#F0EEEA');
|
||||||
|
var link = el.querySelector('a') || document.createElement('a');
|
||||||
|
link.href = '#/';
|
||||||
|
link.innerHTML = '';
|
||||||
|
link.appendChild(svgEl);
|
||||||
el.innerHTML = '';
|
el.innerHTML = '';
|
||||||
el.appendChild(svgEl);
|
el.appendChild(link);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user