Mudanças entre as edições de "MediaWiki:Common.js"
Ir para navegação
Ir para pesquisar
Linha 9: | Linha 9: | ||
var garoa_msecs = document.createElement("li"); |
var garoa_msecs = document.createElement("li"); |
||
garoa_msecs.setAttribute("id", "footer-garoa-msecs"); |
garoa_msecs.setAttribute("id", "footer-garoa-msecs"); |
||
− | document.getElementById("footer- |
+ | document.getElementById("footer-places").appendChild(garoa_msecs); |
function update_msecs(){ |
function update_msecs(){ |
||
− | document.getElementById("footer-garoa-msecs").innerHTML = "Garoando há "+ |
+ | document.getElementById("footer-garoa-msecs").innerHTML = "<a title="Fundação" href="/wiki/Fundação">Garoando há "+ |
− | (new Date().getTime()-epoch |
+ | (new Date().getTime()/1000-epoch)+" segundos.</a>"; |
} |
} |
||
function update_secs(){ |
function update_secs(){ |
||
− | document.getElementById("footer-garoa-msecs").innerHTML = "Garoando há "+ |
+ | document.getElementById("footer-garoa-msecs").innerHTML = "<a title="Fundação" href="/wiki/Fundação">Garoando há "+ |
− | Math.floor(new Date().getTime()/1000-epoch)+" segundos."; |
+ | Math.floor(new Date().getTime()/1000-epoch)+" segundos.</a>"; |
} |
} |
||
Edição das 17h18min de 6 de dezembro de 2013
(function(){ function on_load(){ // Epoch 0: momento da fundação do Garoa Hacker Clube! // Veja http://garoa.net.br/w/index.php?title=Epoch0 var epoch = 1298244863; var garoa_msecs = document.createElement("li"); garoa_msecs.setAttribute("id", "footer-garoa-msecs"); document.getElementById("footer-places").appendChild(garoa_msecs); function update_msecs(){ document.getElementById("footer-garoa-msecs").innerHTML = "<a title="Fundação" href="/wiki/Fundação">Garoando há "+ (new Date().getTime()/1000-epoch)+" segundos.</a>"; } function update_secs(){ document.getElementById("footer-garoa-msecs").innerHTML = "<a title="Fundação" href="/wiki/Fundação">Garoando há "+ Math.floor(new Date().getTime()/1000-epoch)+" segundos.</a>"; } //juca gosta do efeito dos milissegundos correndo. Além de ser mil vezes mais nerd :-D literalmente! (aritmeticamente!!!) //mas pitanga acha ruim mostrar milissegundos por que consumiria muita CPU... // window.setInterval(update_msecs, 1); window.setInterval(update_secs, 1000); } window.addEventListener("load", on_load, false); })();