Merge pull request #392 from simonlnu/master

add doctitle thingy, and update cursor
2022.09-rc
Simon 2012-07-13 01:35:55 -07:00
commit c3fc5ddae6
2 zmienionych plików z 13 dodań i 0 usunięć

Wyświetl plik

@ -43,4 +43,17 @@ function insertFormatting(comment, BBcode, id) {
function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show();
}
function cmtBbClose(id) {
$(".comment-edit-bb-" + id).hide();
}
var doctitle = document.title;
function checkNotify() {
if(document.getElementById("notify-update").innerHTML != "") {
document.title = "("+document.getElementById("notify-update").innerHTML+") " + doctitle;
} else {
document.title = doctitle;
};
setInterval(function () {checkNotify();}, 10 * 1000);
}
</script>

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 23 KiB

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 20 KiB