[DEV] some bugs

This commit is contained in:
Edouard DUPIN 2020-10-25 15:39:44 +01:00
parent e10ebe4de8
commit 434322fc9b
2 changed files with 9 additions and 8 deletions

View File

@ -2,9 +2,9 @@
"$schema" : "./node_modules/@angular/cli/lib/config/schema.json", "$schema" : "./node_modules/@angular/cli/lib/config/schema.json",
"version" : 1, "version" : 1,
"newProjectRoot" : "projects", "newProjectRoot" : "projects",
"defaultProject" : "no-comment", "defaultProject" : "karideo",
"projects" : { "projects" : {
"no-comment" : { "karideo" : {
"root" : "", "root" : "",
"sourceRoot" : "src", "sourceRoot" : "src",
"projectType" : "application", "projectType" : "application",
@ -42,18 +42,18 @@
"serve" : { "serve" : {
"builder" : "@angular-devkit/build-angular:dev-server", "builder" : "@angular-devkit/build-angular:dev-server",
"options" : { "options" : {
"browserTarget" : "no-comment:build" "browserTarget" : "karideo:build"
}, },
"configurations" : { "configurations" : {
"production" : { "production" : {
"browserTarget" : "no-comment:build:production" "browserTarget" : "karideo:build:production"
} }
} }
}, },
"extract-i18n" : { "extract-i18n" : {
"builder" : "@angular-devkit/build-angular:extract-i18n", "builder" : "@angular-devkit/build-angular:extract-i18n",
"options" : { "options" : {
"browserTarget" : "no-comment:build" "browserTarget" : "karideo:build"
} }
}, },
"test" : { "test" : {
@ -77,7 +77,7 @@
} }
} }
}, },
"no-comment-e2e" : { "karideo-e2e" : {
"root" : "e2e", "root" : "e2e",
"sourceRoot" : "e2e", "sourceRoot" : "e2e",
"projectType" : "application", "projectType" : "application",
@ -86,7 +86,7 @@
"builder" : "@angular-devkit/build-angular:protractor", "builder" : "@angular-devkit/build-angular:protractor",
"options" : { "options" : {
"protractorConfig" : "./protractor.conf.js", "protractorConfig" : "./protractor.conf.js",
"devServerTarget" : "no-comment:serve" "devServerTarget" : "karideo:serve"
} }
}, },
"lint" : { "lint" : {

View File

@ -16,7 +16,6 @@ import { PopInService } from '../../service/popin';
}) })
export class PopInComponent implements OnInit, OnDestroy { export class PopInComponent implements OnInit, OnDestroy {
public displayPopIn: boolean = false;
@Input() id: string; @Input() id: string;
@Input() popTitle: string = 'No title'; @Input() popTitle: string = 'No title';
@Input() closeTopRight: any = "false"; @Input() closeTopRight: any = "false";
@ -28,6 +27,8 @@ export class PopInComponent implements OnInit, OnDestroy {
@Input() saveTitle: any = null; @Input() saveTitle: any = null;
@Input() otherTitle: any = null; @Input() otherTitle: any = null;
public displayPopIn: boolean = false;
constructor(private popInService: PopInService) { constructor(private popInService: PopInService) {
} }