Skip to content

Commit

Permalink
commented out debug console messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Tzahi12345 committed Feb 11, 2020
1 parent ba55920 commit 505b145
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ export class AppComponent implements OnInit {
}

public removeFromMp4(name: string) {
console.log(name);
console.log(this.mp4s);
// console.log(name);
// console.log(this.mp4s);
for (let i = 0; i < this.mp4s.length; i++) {
if (this.mp4s[i].id === name) {
this.mp4s.splice(i, 1);
Expand All @@ -120,7 +120,7 @@ export class AppComponent implements OnInit {
this.exists = exists[0];
if (exists[0] === 'failed') {
const percent = exists[2];
console.log(percent);
// console.log(percent);
if (percent > 0.30) {
this.determinateProgress = true;
this.percentDownloaded = percent * 100;
Expand Down

0 comments on commit 505b145

Please sign in to comment.