diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/codeq/navigation.js | 3 | ||||
-rw-r--r-- | js/codeq/profile.js | 2 | ||||
-rw-r--r-- | js/codeq/signup.js | 1 |
3 files changed, 1 insertions, 5 deletions
diff --git a/js/codeq/navigation.js b/js/codeq/navigation.js index 7fc3697..4baf5b9 100644 --- a/js/codeq/navigation.js +++ b/js/codeq/navigation.js @@ -110,11 +110,10 @@ codeq.comms.logout() .then(function (data) { - console.log(data); codeq.comms.disconnect(); }) .fail(function (reason) { - console.log(reason); + codeq.log.error('Logout failed: ' + reason); }) .done(); diff --git a/js/codeq/profile.js b/js/codeq/profile.js index f666697..cc1cd28 100644 --- a/js/codeq/profile.js +++ b/js/codeq/profile.js @@ -30,8 +30,6 @@ items='<thead><tr>',
tr_gui = codeq.tr.getDictionary('gui');
- console.log(tr_gui);
-
$.each(columns, function( key, val ) {
items+='<th data-tkey="'+ val + '">'+tr_gui[val][codeq.settings['gui_lang']]+'</th>';
});
diff --git a/js/codeq/signup.js b/js/codeq/signup.js index 443b500..ad666a0 100644 --- a/js/codeq/signup.js +++ b/js/codeq/signup.js @@ -27,7 +27,6 @@ //prepare listener for successfull signup jqFormSignUp.on('submit',function(event) { - console.log($(this).serialize()); if (jqPassword.val() != jqVerify.val()) { alert('Passwords do not match.'); } |