1
0
mirror of https://github.com/gsi-upm/sitc synced 2025-08-24 10:32:20 +00:00

added tutorial SPARQL

This commit is contained in:
cif2cif
2021-02-18 18:10:59 +01:00
parent 7271b5e632
commit 8b6d6de169
45 changed files with 7502 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
// http://ben.balter.com/2014/03/13/pages-anchor-links/
$(function() {
return $("h2, h3, h4, h5, h6").each(function(i, el) {
var $el, icon, id;
$el = $(el);
id = $el.attr('id');
icon = '<i class="fa fa-link" style="font-size: 0.8em"></i>';
if (id) {
return $el.append($("<a />").addClass("header-link").attr("href", "#" + id).html(icon));
}
});
});