X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fcommons.js;h=5079a8b9f0c9859b622966f34e26b3183db310ad;hb=1c864a7f5b393bddf3ef4ce94886703d2ac3b21c;hp=18b89c87df6d528556ee3e653235b2ca424dfe7b;hpb=041ad76b646377ac5d09f244fa0f524547b1a942;p=brisk.git diff --git a/web/commons.js b/web/commons.js index 18b89c8..5079a8b 100644 --- a/web/commons.js +++ b/web/commons.js @@ -204,6 +204,11 @@ function act_tableinfo() send_mesg("tableinfo"); } +function act_help() +{ + send_mesg("help"); +} + function safelogout() { var res; @@ -244,7 +249,7 @@ function postact_logout() xhr_rd.abort(); } catch (e) {} - eraseCookie("sess"); + // eraseCookie("sess"); document.location.assign("index.php"); } @@ -451,12 +456,14 @@ function notify(st, ancestor, text, tout, butt) var t = this; this.st = st; + this.ancestor = ancestor; this.st.st_loc_new++; clo = document.createElement("input"); clo.type = "submit"; + clo.className = "button"; clo.value = butt; clo.obj = this; clo.onclick = this.input_hide; @@ -566,10 +573,16 @@ function set_names(so,ea,ne,nw,we) { // alert("EA: "+ea); $("name").innerHTML = so; + $("name").title = so; $("name_ea").innerHTML = ea; + $("name_ea").title = ea; $("name_ne").innerHTML = ne; + $("name_ne").title = ne; $("name_nw").innerHTML = nw; + $("name_nw").title = nw; $("name_we").innerHTML = we; + $("name_we").title = we; + return; }