mirror of https://github.com/msberends/AMR.git
41 lines
2.3 KiB
JavaScript
41 lines
2.3 KiB
JavaScript
/*
|
|
# ==================================================================== #
|
|
# TITLE #
|
|
# Antimicrobial Resistance (AMR) Analysis #
|
|
# #
|
|
# SOURCE #
|
|
# https://gitlab.com/msberends/AMR #
|
|
# #
|
|
# LICENCE #
|
|
# (c) 2019 Berends MS (m.s.berends@umcg.nl), Luz CF (c.f.luz@umcg.nl) #
|
|
# #
|
|
# This R package is free software; you can freely use and distribute #
|
|
# it for both personal and commercial purposes under the terms of the #
|
|
# GNU General Public License version 2.0 (GNU GPL-2), as published by #
|
|
# the Free Software Foundation. #
|
|
# #
|
|
# This R package was created for academic research and was publicly #
|
|
# released in the hope that it will be useful, but it comes WITHOUT #
|
|
# ANY WARRANTY OR LIABILITY. #
|
|
# Visit our website for more info: https://msberends.gitab.io/AMR. #
|
|
# ==================================================================== #
|
|
*/
|
|
|
|
// Keep GitLab as original source
|
|
// window.location.replace("github", "gitlab");
|
|
|
|
// Add updated Font Awesome 5.6.3 library
|
|
$('head').append('<!-- Updated Font Awesome library --><link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">');
|
|
|
|
// Edit footer
|
|
$( document ).ready(function() {
|
|
$('footer').html('<p>' +
|
|
$('footer .copyright p').html().replace("Developed by",
|
|
"<code>AMR</code> (for R). Developed at the University of Groningen.<br>Authors:") +
|
|
'</p>');
|
|
//$('footer').prepend("<div class='university'/>");
|
|
|
|
// Edit title of manual
|
|
$('.template-reference-index h1').text('Manual');
|
|
});
|