X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=js%2Futils.js;h=51a7a491bfeedd96f7d9da8a12c4a560ba7358b5;hb=1ec8a5ea3c868d0f31fbb9c64d655fe2a077e904;hp=64a266d721951cd2f1752e7b73cad97dfd2cafe1;hpb=ebc600101ceab69c06eac4b1bd4d1782af45de05;p=fa-stable.git diff --git a/js/utils.js b/js/utils.js index 64a266d7..51a7a491 100644 --- a/js/utils.js +++ b/js/utils.js @@ -35,9 +35,10 @@ function disp_msg(msg, cl) { // JsHttpRequest.request= function(trigger, form, tout) { // if (trigger.type=='submit' && !validate(trigger)) return false; - tout = tout | 3000; // default timeout value - set_mark(tout>5000 ? 'progressbar.gif' : 'ajax-loader.gif'); - JsHttpRequest._request(trigger, form, tout, 2); + tout = tout | 6000; // default timeout value + document.getElementById('msgbox').innerHTML=''; + set_mark(tout>10000 ? 'progressbar.gif' : 'ajax-loader.gif'); + JsHttpRequest._request(trigger, form, tout, 0); } JsHttpRequest._request = function(trigger, form, tout, retry) { @@ -104,7 +105,7 @@ JsHttpRequest._request = function(trigger, form, tout, retry) { // seek element by id if there is no elemnt with given name objElement = document.getElementsByName(id)[0] || document.getElementById(id); if(cmd=='as') { - eval("objElement.setAttribute('"+property+"',"+data+");"); + eval("objElement.setAttribute('"+property+"','"+data+"');"); } else if(cmd=='up') { // if(!objElement) alert('No element "'+id+'"'); if(objElement) { @@ -211,19 +212,24 @@ function price_format(post, num, dec, label, color) { if(isNaN(num)) num = "0"; sign = (num == (num = Math.abs(num))); + var max = dec=='max'; + if(max) dec = 15 - Math.floor(Math.log(Math.abs(num))); if(dec<0) dec = 2; decsize = Math.pow(10, dec); num = Math.floor(num*decsize+0.50000000001); cents = num%decsize; num = Math.floor(num/decsize).toString(); for( i=cents.toString().length; ip0.y)) || (dir==38 && (p.yp0.x)))) { var l1 = (p.y-p0.y)*(p.y-p0.y)+(p.x-p0.x)*(p.x-p0.x);