Skip to content

Commit

Permalink
fix: While Using POPUP mode, we click on login button multiple time i…
Browse files Browse the repository at this point in the history
…t opens multiple popup instead of focusing already opened
  • Loading branch information
manfredsteyer committed Jul 16, 2021
1 parent 7adde5d commit bbff95b
Show file tree
Hide file tree
Showing 31 changed files with 12,185 additions and 14,257 deletions.
30 changes: 20 additions & 10 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/lib/tsconfig.lib.json",
"project": "projects/lib/ng-package.json"
Expand Down Expand Up @@ -44,7 +44,6 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"aot": true,
"outputPath": "dist/sample",
"index": "projects/sample/src/index.html",
"main": "projects/sample/src/main.ts",
Expand All @@ -59,7 +58,13 @@
"projects/sample/src/styles.css",
"node_modules/bootstrap/dist/css/bootstrap.css"
],
"scripts": []
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand All @@ -78,14 +83,13 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand Down Expand Up @@ -156,7 +160,13 @@
"projects/quickstart-demo/src/assets"
],
"styles": ["projects/quickstart-demo/src/styles.css"],
"scripts": []
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand All @@ -169,7 +179,6 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
Expand All @@ -183,7 +192,8 @@
}
]
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand Down Expand Up @@ -250,7 +260,7 @@
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/angular-oauth2-oidc-jwks/tsconfig.lib.json",
"project": "projects/angular-oauth2-oidc-jwks/ng-package.json"
Expand Down
2 changes: 1 addition & 1 deletion e2e/tsconfig.e2e.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../tsconfig.base.json",
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"module": "commonjs",
Expand Down
Loading

0 comments on commit bbff95b

Please sign in to comment.