-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #281 from computas/develop
merge v2.1.2 into release
- Loading branch information
Showing
45 changed files
with
297 additions
and
272 deletions.
There are no files selected for viewing
15 changes: 0 additions & 15 deletions
15
src/app/admin/dialog-template/dialog-template.component.html
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
src/app/admin/dialog-template/dialog-template.component.scss
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<div mat-dialog-content class="dialog-content"> | ||
<h1 align="center" class="dialog-title" mat-dialog-title>Informasjon</h1> | ||
|
||
<div class="dialog-body"> | ||
<p><b>Navn på iterasjon:</b> {{ data.iterationName }}</p> | ||
<p><b>Tidspunktet iterasjonen ble lagd:</b> {{ data.timeCreated }}</p> | ||
<p><b>Antall (nye) bilder i treningssettet:</b> {{ data.imageCount }}</p> | ||
</div> | ||
|
||
<p class="dialog-footer">(Trykk utenfor boksen for å lukke)</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
.dialog-content { | ||
text-align: center; | ||
padding: 20px; | ||
max-width: 400px; | ||
margin: auto; | ||
} | ||
|
||
.dialog-title { | ||
font-size: 24px; | ||
font-weight: bold; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.dialog-body p { | ||
font-size: 16px; | ||
margin: 10px 0; | ||
font-weight: 500; | ||
} | ||
|
||
.dialog-body b { | ||
font-weight: 900; | ||
} | ||
|
||
.dialog-footer { | ||
font-size: 14px; | ||
color: grey; | ||
margin-top: 20px; | ||
font-style: italic; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<h1 align="center" class="info-title">Administrative handlinger</h1> | ||
<br/> | ||
<div class="btn-group" align="center"> | ||
<button class="btn btn-lg btn-outline-primary" (click)="getInformation()">Vis informasjon</button> | ||
<p></p> | ||
<button (click)="clearHighScore()">{{ this.highScoreString }}</button> | ||
<p></p> | ||
<button (click)="getLogger()">Hent feilmeldingsloggen (backend)</button> | ||
<p></p> | ||
<button (click)="getLoggerFrontend()">Hent feilmeldingsloggen (frontend)</button> | ||
</div> | ||
<br /> | ||
|
||
<div align="center"> | ||
<button mat-button class="sign-out-btn" (click)="signOut()">Logg ut</button> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...pp/game/game-intermediate-result/game-drawing-feedback/game-drawing-feedback.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...e/game-intermediate-result/game-example-drawings/correct-guess/correct-guess.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.