mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-06 20:03:05 +02:00
- Add +x to Python scripts with shebangs (3 files) - Remove -x from non-script files like .cpp, .txt, makefile (23 files) - Move shebang to first line in C/imageViewer/lint.sh
31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
<mat-form-field class="example-form-field">
|
|
<mat-label>min</mat-label>
|
|
<input matInput type="number" [(ngModel)]="min" (input)="updateInput()">
|
|
</mat-form-field>
|
|
<mat-form-field class="example-form-field">
|
|
<mat-label>max</mat-label>
|
|
<input matInput type="number" [(ngModel)]="max" (input)="updateInput()">
|
|
</mat-form-field>
|
|
<mat-form-field class="example-form-field">
|
|
<mat-label>step</mat-label>
|
|
<input matInput type="number" [(ngModel)]="step" (input)="updateInput()">
|
|
</mat-form-field>
|
|
<mat-form-field class="example-form-field">
|
|
<mat-label>targetValue</mat-label>
|
|
<input matInput type="number" [(ngModel)]="targetValue" (input)="updateInput()">
|
|
</mat-form-field> <br>
|
|
<mat-form-field class="example-form-field">
|
|
<mat-label>inputOne</mat-label>
|
|
<input disabled="true" matInput type="number" [min]="min" [step]="step" [max]="max" [(ngModel)]="inputOne">
|
|
</mat-form-field>
|
|
<button mat-button (click)="upOne()"> UP </button>
|
|
<button mat-button (click)="downOne()"> DOWN </button>
|
|
<br>
|
|
<mat-form-field class="example-form-field">
|
|
<mat-label>inputTwo</mat-label>
|
|
<input disabled="true" matInput type="number" [min]="min" [step]="step" [max]="max" [(ngModel)]="inputTwo">
|
|
</mat-form-field>
|
|
<button mat-button (click)="upTwo()"> UP </button>
|
|
<button mat-button (click)="downTwo()"> DOWN </button>
|
|
<br>
|