1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-09 23:41:55 +02:00

SPSS tutorial

This commit is contained in:
2019-02-14 15:18:17 +01:00
parent efb2af9e3a
commit 9209787a53
78 changed files with 1272 additions and 227 deletions

View File

@ -56,6 +56,20 @@ $( document ).ready(function() {
'<a href="https://www.rug.nl" target="_blank"><img src="../../AMR/logo_rug.png" class="footer_logo"></a>' +
'</div>');
// doctoral titles of authors
function doct_tit(x) {
if (typeof(x) != "undefined") {
x = x.replace("Corinna", "Dr Corinna");
x = x.replace("Alex", "Prof Dr Alex");
x = x.replace("Bhanu", "Prof Dr Bhanu");
x = x.replace(/Author, thesis advisor/g, "Doctoral advisor");
}
return(x);
}
$(".template-authors").html(doct_tit($(".template-authors").html()));
$(".developers").html(doct_tit($(".developers").html()));
$("footer").html(doct_tit($("footer").html()));
// Edit title of manual
$('.template-reference-index h1').text('Manual');
});