Skip to content
Snippets Groups Projects
Commit e25e7a1e authored by rhenck's avatar rhenck
Browse files

[editor] Fix cloze button tooltip in TextEditor

The tooltip declarations does not need escaped text. Was shawing one to 
many backslashes.
parent 447fa70b
No related branches found
No related tags found
No related merge requests found
...@@ -222,11 +222,11 @@ ...@@ -222,11 +222,11 @@
</mat-menu> </mat-menu>
</div> </div>
<div *ngIf="showCloseElements" fxLayout="row" fxLayoutAlign="space-around center" > <div *ngIf="showCloseElements" fxLayout="row" fxLayoutAlign="space-around center" >
<button mat-icon-button matTooltip="\\i" [matTooltipShowDelay]="300" <button mat-icon-button matTooltip="\i" [matTooltipShowDelay]="300"
(click)="insertSpecialChar('\\i')"> (click)="insertSpecialChar('\\i')">
<mat-icon>text_fields</mat-icon> <mat-icon>text_fields</mat-icon>
</button> </button>
<button mat-icon-button matTooltip="\\z" [matTooltipShowDelay]="300" <button mat-icon-button matTooltip="\z" [matTooltipShowDelay]="300"
(click)="insertSpecialChar('\\z')"> (click)="insertSpecialChar('\\z')">
<mat-icon>drag_indicator</mat-icon> <mat-icon>drag_indicator</mat-icon>
</button> </button>
......
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