Skip to content
Snippets Groups Projects
Commit 04f18a07 authored by Ken Hawkins's avatar Ken Hawkins Committed by GitHub
Browse files

Disable redundant function for #24

Action 3
parent 82ef2ae0
No related branches found
No related tags found
No related merge requests found
......@@ -34,15 +34,15 @@
(function fixes() {
// set text in copyright notice, adjust to current year
(function copyrightFix() {
try {
var d = new Date();
document.getElementById('ebi-footer-meta').innerHTML = "" +
"<p class=\"address\">EMBL-EBI, Wellcome Genome Campus, Hinxton, Cambridgeshire, CB10 1SD, UK &nbsp; &nbsp; +44 (0)1223 49 44 44</p>" +
"<p>Copyright &copy; EMBL-EBI " + d.getFullYear() + " | EBI is an outstation of the <a href=\"http://www.embl.org\">European Molecular Biology Laboratory</a> | <a href=\"/about/terms-of-use\">Terms of use</a></p>";
}
catch (err) {}
})();
// (function copyrightFix() {
// try {
// var d = new Date();
// document.getElementById('ebi-footer-meta').innerHTML = "" +
// "<p class=\"address\">EMBL-EBI, Wellcome Genome Campus, Hinxton, Cambridgeshire, CB10 1SD, UK &nbsp; &nbsp; +44 (0)1223 49 44 44</p>" +
// "<p>Copyright &copy; EMBL-EBI " + d.getFullYear() + " | EBI is an outstation of the <a href=\"http://www.embl.org\">European Molecular Biology Laboratory</a> | <a href=\"/about/terms-of-use\">Terms of use</a></p>";
// }
// catch (err) {}
// })();
// mark pdf/doc/txt links with link-pdf/link-doc/link-txt classes
// exclude links with images
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment