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,8 @@
$(document).ready(function() {
$('a').each(function() {
var a = new RegExp('/' + window.location.host + '/');
if (!a.test(this.href)) {
$(this).attr("target","_blank");
}
});
});