Skip to content
Snippets Groups Projects
Commit 28741d40 authored by jojohoch's avatar jojohoch
Browse files

Change the appearance of reset button of geogebra element

#449

- position
- label
- icon
parent c36024bc
No related branches found
No related tags found
No related merge requests found
Editor
======
## 2.1.2
### Änderungen
- "Zurücksetzen"-Knopf des Geogebra-Elements
- Position oberhalb des Elements
- mit Beschriftung "neu anlegen"
- neues Icon
## 2.1.1 deleted
## 2.1.0
### Neue Funktionen
- Für die Bedingungen zur Sichtbarkeit von Abschnitten kann nun die
......
Player
======
## 2.1.2
### Änderungen
- "Zurücksetzen"-Knopf des Geogebra-Elements
- Position oberhalb des Elements
- mit Beschriftung "neu anlegen"
- neues Icon
## 2.1.1 deleted
## 2.1.0
### Neue Funktionen
- Der Player zeigt nur Unitdefinitionen an, die mit der gleichen Editor-Version erstellt wurden.
......
......@@ -18,19 +18,22 @@ declare const GGBApplet: any;
[style.height.px]="elementModel.height"
[style.width.px]="elementModel.width"
[class.center]="this.elementModel.dimensions.isWidthFixed">
<div [id]="elementModel.id" class="geogebra-applet"></div>
<button *ngIf="this.elementModel.showResetIcon"
mat-raised-button
class="reset-button"
mat-stroked-button
(click)="reset()">
<div><mat-icon class="reset-icon">restart_alt</mat-icon></div>
<mat-icon class="reset-icon">autorenew</mat-icon>neu anfangen
</button>
<div [id]="elementModel.id" class="geogebra-applet"></div>
</div>
<aspect-spinner [isLoaded]="isLoaded"></aspect-spinner>
`,
styles: [
':host {display: block; width: 100%; height: 100%;}',
'.geogebra-container {position: relative;}',
'.center {margin: auto;}'
'.center {margin: auto;}',
'.geogebra-container .reset-icon {width: 1.5rem; height: 1.5rem; font-size: 1.5rem;}',
'.reset-button {margin-bottom: 3px;}'
]
})
export class GeometryComponent extends ElementComponent implements AfterViewInit, OnDestroy {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment