MediaWiki:Timeless.js: Difference between revisions

From Fintech Lab Wiki
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* All JavaScript here will be loaded for users of the Timeless skin */
/* All JavaScript here will be loaded for users of the Timeless skin */
const bocconiLogo = document.getElementById('p-banner');
const bocconiLogo = document.getElementById('p-banner');
bocconiLogo.setAttribute('href',"https://www.unibocconi.it");
bocconiLogo.setAttribute('href', "https://www.unibocconi.it");
bocconiLogo.setAttribute('target',"_blank");
bocconiLogo.setAttribute('target', "_blank");
 
/* Add a target=_blank to all social links in footer */
const socialLinks = document.querySelectorAll('.footer-icons a')
socialLinks.forEach(element => {
  element.setAttribute('target',"_blank");
});

Latest revision as of 16:10, 1 June 2022

/* All JavaScript here will be loaded for users of the Timeless skin */
const bocconiLogo = document.getElementById('p-banner');
bocconiLogo.setAttribute('href', "https://www.unibocconi.it");
bocconiLogo.setAttribute('target', "_blank");