This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb5/site/static/main/js/annoy.js

14 lines
368 B
JavaScript

function beAnnoying() {
var _t = parseInt(document.getElementById('redtime').innerHTML, 10);
_t --;
if (_t == 0) {
document.location.href = document.location.href.replace(/\.php.*$/, '.php/main/contrib');
} else {
document.getElementById('redtime').innerHTML = _t;
setTimeout('beAnnoying()', 1000);
}
}
$(function(){
setTimeout('beAnnoying()', 1000);
});