X-Git-Url: https://mop.ddnsfree.com/gitweb/?p=brisk.git;a=blobdiff_plain;f=web%2Fcommons.js;h=8a5b0a66ed93cb12b4ad0d98c8482f3517ecab43;hp=c65dd51a7e2cb1b46753ffa311b1b75415018ac9;hb=1fc2a56fc5b81d917ce929be0e2f0d53672a26fa;hpb=8b0992347fdfdb40715268bb07481d35fc5191fb diff --git a/web/commons.js b/web/commons.js index c65dd51..8a5b0a6 100644 --- a/web/commons.js +++ b/web/commons.js @@ -41,10 +41,8 @@ var mlang_commons = { 'imgload_a' : { 'it' : 'Immagini caricate ', 'en' : 'Exit.' }, 'tit_list' : { '0' : { 'it' : '', 'en' : '' }, - '1' : { 'it' : '(solo aut.)', - 'en' : '(only aut.)' }, - '2' : { 'it' : '(isolam.to)', - 'en' : '(isolation)' } }, + '1' : { 'it' : '(autenticati)', + 'en' : '(authenticated)' } }, 'tos_refu' : { 'it' : 'Rifiutando di sottoscrivere i nuovi termini del servizio non ti sarà più possibile accedere come utente registrato al sito, sei proprio sicuro di voler rifiutare le nuove condizioni d\'uso ?', 'en' : 'EN Rifiutando di sottoscrivere i nuovi termini del servizio non ti sarà più possibile accedere come utente registrato al sito, sei proprio sicuro di voler rifiutare le nuove condizioni d\'uso ?' } @@ -274,9 +272,26 @@ function send_mesg(mesg, content) } var target = window.location.href.substring(0, window.location.href.lastIndexOf('/') + 1) + 'index_wr.php'; - var ws_msg = JSON.stringify({target: target, mesg: mesg, stp:gst.st, sess:sess}); - console.log(ws_msg); - xstm.transp.ws.send(ws_msg); + var ws_msg = JSON.stringify({ + target: target, + mesg: mesg, + stp:gst.st, + sess:sess, + table_idx: readCookie("table_idx"), + table_token: readCookie("table_token"), + lang: readCookie("lang") + }); + // console.log(ws_msg); + xstm.send(ws_msg); + /* + if (xstm.transp.ws.readyState == 1) { + xstm.transp.ws.send(ws_msg); + } + else { + xstm.transp.out_queue.push(ws_msg); + } + */ + } else { var xhr_wr = createXMLHttpRequest();