X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=js%2Finserts.js;h=d7fa75353de37f0865a5dfaf3e9a627b1f03552e;hb=5cd13431fe25eb8cd98f67020c55dab124c7e930;hp=cebb2a438bae3bd2d930c3147620c4a50d73937b;hpb=4a2b99e23da068a31623fc054dee234a63f50e6a;p=fa-stable.git diff --git a/js/inserts.js b/js/inserts.js index cebb2a43..d7fa7535 100644 --- a/js/inserts.js +++ b/js/inserts.js @@ -214,7 +214,7 @@ var inserts = { e.onclick = function() { save_focus(e); if (e.getAttribute('aspect') == 'process') - JsHttpRequest.request(this, null, 30000); + JsHttpRequest.request(this, null, 60000); else JsHttpRequest.request(this); return false; @@ -357,7 +357,7 @@ function setHotKeys() { _hotkeys.focus = -1; return stopEv(ev); } - else if (_hotkeys.alt && ((key>47 && key<58) || (key>64 && key<91))) { + else if (ev.altKey && !ev.ctrlKey && ((key>47 && key<58) || (key>64 && key<91))) { var n = _hotkeys.focus; var l = document.links; var cnt = l.length;