forked from DGNum/gestioCOF
65c979ea59
This patches wrongly displayed "Contact : fromages@lists.enspontfr" on https://cof.ens.fr/gestion/sitecof/annuaires-des-clubs/
13 lines
429 B
JavaScript
13 lines
429 B
JavaScript
$(function() {
|
|
$(".facteur").on("click", function(){
|
|
var $this = $(this);
|
|
var sticker = $this.attr('data-mref')
|
|
.replace(/pont/g, '.')
|
|
.replace(/arbre/g, '@')
|
|
.replace(/(.)-/g, '$1');
|
|
|
|
var boite = $("<a>", {href:"ma"+"il"+"to:"+sticker}).text(sticker);
|
|
$(this).before(boite)
|
|
.remove();
|
|
})
|
|
});
|