summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-12-30 14:53:39 +0000
committerthomascube <thomas@roundcube.net>2008-12-30 14:53:39 +0000
commit1ddc579945a82a33690e2dfd2c7f8ea2ccf2d82b (patch)
tree46dae856980b4e3f0b32d432bb1e7f5a846f8063
parent6a7b713dc5a854efa16c25015c938faa8fb4ad4c (diff)
Remove console logging
-rw-r--r--program/js/app.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/program/js/app.js b/program/js/app.js
index a09a11c77..ef924eebd 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3769,7 +3769,7 @@ function rcube_webmail()
var rcmail = this;
this.set_busy(true, 'converting');
- console.log('HTTP POST: '+url);
+ //console.log('HTTP POST: '+url);
http_request.onerror = function(o) { rcmail.http_error(o); };
http_request.oncomplete = function(o) { rcmail.set_text_value(o, id); };
@@ -3780,7 +3780,7 @@ function rcube_webmail()
{
this.set_busy(false);
document.getElementById(id).value = httpRequest.get_text();
- console.log(httpRequest.get_text());
+ //console.log(httpRequest.get_text());
}
@@ -3836,7 +3836,7 @@ function rcube_webmail()
// send request
if (request_obj)
{
- console.log('HTTP request: '+this.env.comm_path+'&_action='+action+'&'+querystring);
+ //console.log('HTTP request: '+this.env.comm_path+'&_action='+action+'&'+querystring);
if (lock)
this.set_busy(true);
@@ -3862,7 +3862,7 @@ function rcube_webmail()
// send request
if (request_obj = this.get_request_obj())
{
- console.log('HTTP POST: '+this.env.comm_path+'&_action='+action);
+ //console.log('HTTP POST: '+this.env.comm_path+'&_action='+action);
if (lock)
this.set_busy(true);
@@ -3890,7 +3890,7 @@ function rcube_webmail()
if (request_obj.__lock)
this.set_busy(false);
- console.log(request_obj.get_text());
+ //console.log(request_obj.get_text());
// if we get javascript code from server -> execute it
if (request_obj.get_text() && (ctype=='text/javascript' || ctype=='application/x-javascript'))