projects
/
brisk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
keepalives_eq_max management fixed to have a correct count of seconds
[brisk.git]
/
web
/
heartbit.js
1
function heartbit(symb)
2
{
3
if ($("heartbit").innerHTML.length >= 120) {
4
$("heartbit").innerHTML = $("heartbit").innerHTML.substring(10);
5
$("heartbit").innerHTML += symb;
6
}
7
else {
8
$("heartbit").innerHTML += symb;
9
}
10
}
11