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:
13
lod/tutorial/js/header_links.js
Normal file
13
lod/tutorial/js/header_links.js
Normal 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));
|
||||
}
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user