From 7bc1ac8cc9e88ebcc7d96ae446f1419073a9f4ea Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Fri, 17 Dec 2021 16:00:06 +0100 Subject: [PATCH] [editor] Add toggle-button to TextEditor in Cloze-mode Also improve tooltips. --- .../src/app/text-editor/rich-text-editor.component.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/projects/editor/src/app/text-editor/rich-text-editor.component.html b/projects/editor/src/app/text-editor/rich-text-editor.component.html index 7f2e7dc99..837b41ce0 100644 --- a/projects/editor/src/app/text-editor/rich-text-editor.component.html +++ b/projects/editor/src/app/text-editor/rich-text-editor.component.html @@ -245,14 +245,18 @@ </button> </div> <div *ngIf="showCloseElements" fxLayout="row" fxLayoutAlign="space-around center" > - <button mat-icon-button matTooltip="\i" [matTooltipShowDelay]="300" + <button mat-icon-button matTooltip="Eingabefeld (\i)" [matTooltipShowDelay]="300" (click)="insertSpecialChar('\\i')"> <mat-icon>text_fields</mat-icon> </button> - <button mat-icon-button matTooltip="\z" [matTooltipShowDelay]="300" + <button mat-icon-button matTooltip="Ablegefeld (\z)" [matTooltipShowDelay]="300" (click)="insertSpecialChar('\\z')"> <mat-icon>drag_indicator</mat-icon> </button> + <button mat-icon-button matTooltip="Optionsfeld (\r)" [matTooltipShowDelay]="300" + (click)="insertSpecialChar('\\r')"> + <mat-icon>radio_button_checked</mat-icon> + </button> </div> </div> <tiptap-editor [editor]="editor" [ngModel]="text" -- GitLab