Skip to content

Commit

Permalink
remove test console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
hossinasaadi committed Feb 13, 2022
1 parent cb7b116 commit 2f24fc7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions client/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ $(document).ready(function() {

users = data.message[2];
app.$root.users = data.message[2];
console.log(data.message[2])
if(! $("#console-arrow").hasClass("extended"))
$("#console-arrow-button").click();
}
Expand All @@ -42,7 +41,6 @@ $(document).ready(function() {
if(data.message_type == "jsonContacts"){
contacts = data.message[3];
app.$root.contacts = data.message[3];
console.log(data.message[3])

}

Expand Down Expand Up @@ -122,7 +120,6 @@ $(document).ready(function() {
{
initStyle: function()
{
// console.log(this.page +" width:" + 100 / parseInt(this.count) + ";")
return "width:" + 100 / parseInt(this.count) + "%;"
},
initClass: function()
Expand Down
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ app.get('/downloadFile', (req, res) => {
let dataFile = '';
pyProg.stdout.on('data', function(data) {

console.log(data.toString());
dataFile += data.toString()
});
pyProg.on('close', function(code) {
Expand Down

0 comments on commit 2f24fc7

Please sign in to comment.