diff options
author | Marko Pušnik <marko.pusnik@guru.si> | 2015-11-09 11:21:13 +0100 |
---|---|---|
committer | Marko Pušnik <marko.pusnik@guru.si> | 2015-11-09 11:21:13 +0100 |
commit | 7a2bca4459ff0219d15b6e2428b7e9871ab66f52 (patch) | |
tree | d7c2951730632123e1f959cb45fb77734f6a6781 /js | |
parent | f3a3a8de8199da0910ba654f35b57fbbdf91a985 (diff) |
clean up
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.'); } |