versie 1.3.1 - bug fixes
This commit is contained in:
@@ -2,6 +2,10 @@
|
||||
|
||||
## Changelog
|
||||
|
||||
### - versie 1.3.1 - bug fixes
|
||||
- tussenstand scherm fix
|
||||
|
||||
|
||||
### - versie 1.3.0 - the 'feel' update:
|
||||
- tussenstand scherm toegevoegd
|
||||
- nieuw lettertype toegevoegd om de 'RTL feel' te geven
|
||||
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "wiv",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "wiv",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"dependencies": {
|
||||
"@angular/animations": "^19.0.1",
|
||||
"@angular/cdk": "^19.0.0",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "wiv",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve",
|
||||
|
||||
@@ -2,10 +2,12 @@ import { Routes } from '@angular/router';
|
||||
import {GameComponent} from './game/game.component';
|
||||
import {WelcomeComponent} from './welcome/welcome.component';
|
||||
import {FinalComponent} from './final/final.component';
|
||||
import {CurrentScoreComponent} from './current-score/current-score.component';
|
||||
|
||||
|
||||
export const routes: Routes = [
|
||||
{ path: '', component: WelcomeComponent },
|
||||
{ path: 'start', component: GameComponent },
|
||||
{ path: 'final', component: FinalComponent },
|
||||
{ path: 'currentScore', component: CurrentScoreComponent },
|
||||
];
|
||||
|
||||
@@ -95,6 +95,7 @@ export class GameComponent implements OnInit {
|
||||
|
||||
let question = +localStorage.getItem('question')
|
||||
if (question < 50){
|
||||
console.log('AAAAAHHH')
|
||||
if (question % 10 == 0){
|
||||
this.router.navigate(['currentScore'])
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user