Mudanças entre as edições de "MediaWiki:Common.js"
Ir para navegação
Ir para pesquisar
Linha 4: | Linha 4: | ||
// Epoch 0: momento da fundação do Garoa Hacker Clube! |
// Epoch 0: momento da fundação do Garoa Hacker Clube! |
||
− | // Veja http://garoa.net.br/ |
+ | // Veja http://garoa.net.br/wiki/Epoch0 |
var epoch = 1298244863; |
var epoch = 1298244863; |
||
Linha 13: | Linha 13: | ||
function update_msecs(){ |
function update_msecs(){ |
||
document.getElementById("footer-garoa-msecs").innerHTML = "<a title=\"Fundação\" href=\"/wiki/Fundação\">Garoando há "+ |
document.getElementById("footer-garoa-msecs").innerHTML = "<a title=\"Fundação\" href=\"/wiki/Fundação\">Garoando há "+ |
||
− | (new Date().getTime()/1000-epoch)+" segundos |
+ | (new Date().getTime()/1000-epoch)+" segundos</a>"; |
} |
} |
||
function update_secs(){ |
function update_secs(){ |
||
document.getElementById("footer-garoa-msecs").innerHTML = "<a title=\"Fundação\" href=\"/wiki/Fundação\">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 17h28min 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/wiki/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); })();