From 1ddc579945a82a33690e2dfd2c7f8ea2ccf2d82b Mon Sep 17 00:00:00 2001 From: thomascube Date: Tue, 30 Dec 2008 14:53:39 +0000 Subject: Remove console logging --- program/js/app.js | 10 +++++----- 1 file 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')) -- cgit v1.2.3