mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-08 18:26:43 +00:00
* first pass * fix up homepage * more work * housekeeping * add script to modify home link * add check docs * build docs site * Create CNAME * fix path to check-docs * update from template * fix logo in readme * fix link * remove logspam * remove old folders * fix all links * fix up readme * change up Insights description * add customization docs * phrasing * title * titles * titles * change webhook docs * refresh template * rebuild site * refresh from template repo * phrasing * add tagline * update readme\, add readme sync script * fix logo * rebuild * fix readme script * rebuild
16 lines
442 B
JavaScript
16 lines
442 B
JavaScript
/*
|
|
* This file is generated from FairwindsOps/documentation-template
|
|
* DO NOT EDIT MANUALLY
|
|
*/
|
|
|
|
document.addEventListener("DOMContentLoaded", function(){
|
|
setTimeout(function() {
|
|
var link = document.getElementsByClassName('home-link')[0];
|
|
linkClone = link.cloneNode(true);
|
|
linkClone.href = "https://fairwinds.com";
|
|
link.setAttribute('target', '_blank');
|
|
link.parentNode.replaceChild(linkClone, link);
|
|
}, 1000);
|
|
});
|
|
|