Skip to content

Commit

Permalink
removing some other console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jed-c committed May 18, 2019
1 parent 0405b6d commit 508e46c
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
18 changes: 9 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"jeds-final-thesis-project-by-hobbito": {
"jeds-final-thesis-project": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
Expand All @@ -13,7 +13,7 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/jeds-final-thesis-project-by-hobbito",
"outputPath": "dist/jeds-final-thesis-project",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
Expand Down Expand Up @@ -57,18 +57,18 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "jeds-final-thesis-project-by-hobbito:build"
"browserTarget": "jeds-final-thesis-project:build"
},
"configurations": {
"production": {
"browserTarget": "jeds-final-thesis-project-by-hobbito:build:production"
"browserTarget": "jeds-final-thesis-project:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "jeds-final-thesis-project-by-hobbito:build"
"browserTarget": "jeds-final-thesis-project:build"
}
},
"test": {
Expand Down Expand Up @@ -102,7 +102,7 @@
}
}
},
"jeds-final-thesis-project-by-hobbito-e2e": {
"jeds-final-thesis-project-e2e": {
"root": "e2e/",
"projectType": "application",
"prefix": "",
Expand All @@ -111,11 +111,11 @@
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "jeds-final-thesis-project-by-hobbito:serve"
"devServerTarget": "jeds-final-thesis-project:serve"
},
"configurations": {
"production": {
"devServerTarget": "jeds-final-thesis-project-by-hobbito:serve:production"
"devServerTarget": "jeds-final-thesis-project:serve:production"
}
}
},
Expand All @@ -131,5 +131,5 @@
}
}
},
"defaultProject": "jeds-final-thesis-project-by-hobbito"
"defaultProject": "jeds-final-thesis-project"
}
2 changes: 1 addition & 1 deletion e2e/src/app.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ describe('workspace-project App', () => {

it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Welcome to jeds-final-thesis-project-by-hobbito!');
expect(page.getParagraphText()).toEqual('Welcome to jeds-final-thesis-project!');
});
});
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "jeds-final-thesis-project-by-hobbito",
"name": "jeds-final-thesis-project",
"version": "0.0.0",
"scripts": {
"ng": "ng",
Expand Down
2 changes: 1 addition & 1 deletion src/app/bubbles.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export class BubblesComponent implements AfterViewInit, OnChanges {

const m = genres.length; // number of distinct clusters

console.log('genres are', genres);
//console.log('genres are', genres);

const colors = genres.map((genre, idx) => {
const h = Math.floor(360.0 * (idx / m));
Expand Down
4 changes: 2 additions & 2 deletions src/app/dataQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,14 +198,14 @@ export class DataQuery {
} else {
date = new Date();
hasNoDate = true;
console.log('below minimum date and no asset date', raw)
//console.log('below minimum date and no asset date', raw)
}

}


if (Number.isNaN(date.getUTCFullYear())) {
console.log('bad date', dateStr, raw)
//console.log('bad date', dateStr, raw)
date = new Date();
hasNoDate = true;
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/tableView.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export class TableViewComponent implements OnChanges, OnDestroy {
const year = item.hasNoDate ? this.unknownDateYear : item.date.getUTCFullYear();

if (Number.isNaN(year)) {
console.log('year is nan', item);
//console.log('year is nan', item);
return;
}

Expand Down

0 comments on commit 508e46c

Please sign in to comment.