/* # ==================================================================== # # TITLE # # Antimicrobial Resistance (AMR) Analysis # # # # SOURCE # # https://github.com/msberends/AMR # # # # LICENCE # # (c) 2018-2020 Berends MS, Luz CF et al. # # # # 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. # # # # We created this package for both routine data analysis and academic # # research and it 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.github.io/AMR. # # ==================================================================== # */ // Add updated Font Awesome 5.8.2 library $('head').append(''); $(document).ready(function() { // add SurveyMonkey // $('body').append(''); // add link to survey at home sidebar // $('.template-home #sidebar .list-unstyled:first').append('
  • Please fill in our survey at
    https://www.surveymonkey.com/r/AMR_for_R
  • '); // remove version label from header $(".version.label").remove(); // redirect GitLab to GitHub var url_old = window.location.href; var url_new = url_old.replace("gitlab", "github"); if (url_old != url_new) { window.location.replace(url_new); } // Replace 'Value' in manual to 'Returned value' $(".template-reference-topic h2#value").text("Returned value"); // PR for 'R for Data Science' on How To pages if ($(".template-article").length > 0) { $('#sidebar').prepend( '
    ' + ' ' + ' Learn R reading this great book: R for Data Science.' + '

    ' + ' Click to read it online - it was published for free.' + ' ' + '
    ' + '
    ' + '
    '); } // edit footer $('footer').html( '
    ' + '

    AMR (for R). Developed at the University of Groningen in collaboration with non-profit organisations Certe Medical Diagnostics and Advice and University Medical Center Groningen.

    ' + '' + '
    '); // all links should open in new tab/window $('footer').html($('footer').html().replace(/href/g, 'target="_blank" href')); // doctoral titles of authors function doct_tit(x) { if (typeof(x) != "undefined") { // authors x = x.replace(/Author, maintainer/g, "Main developer"); x = x.replace(/Author, contributor/g, "Main contributor"); x = x.replace(/Author, thesis advisor/g, "Doctoral advisor"); x = x.replace("Alex", "Prof. Dr. Alex"); x = x.replace("Bhanu", "Prof. Dr. Bhanu"); x = x.replace("Casper", "Prof. Dr. Casper"); x = x.replace("Corinna", "Dr. Corinna"); // others x = x.replace("Bart", "Dr. Bart"); x = x.replace("Sofia", "Dr. Sofia"); x = x.replace("Dennis", "Dr. Dennis"); x = x.replace("Judith", "Dr. Judith"); x = x.replace("Gwen", "Dr. Gwen"); x = x.replace("Anthony", "Dr. Anthony"); } return(x); } $(".template-authors").html(doct_tit($(".template-authors").html())); $(".template-citation-authors").html(doct_tit($(".template-citation-authors").html())); $('.template-citation-authors h1').eq(0).text('How to cite'); $('.template-citation-authors h1').eq(1).text('All contributors'); $(".developers").html(doct_tit($(".developers").html())); $(".developers a[href='authors.html']").text("All contributors..."); // Edit title of manual $('.template-reference-index h1').text('Manual'); }); $('head').append(" ");