Skip to content
Snippets Groups Projects
Commit c9fd1a19 authored by Jean-Laurent DUZANT's avatar Jean-Laurent DUZANT
Browse files

Merge branch 'fix/23976/develop' into 'develop'

[23976] Visionneuse : Note : bug click pour ouvrir/fermer une note

See merge request maarch/MaarchParapheur!218
parents 75ede400 b088f34d
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@
<ng-container *ngIf="(mainDocument.notes !== undefined && mainDocument.notes !== null) || hasWorkflowNotes">
<ion-fab-button *ngIf="!expandedNote" ngDraggable [bounds]="myBounds" [inBounds]="true"
(movingOffset)="signaturesService.dragging=true" (endOffset)="signaturesService.dragging=false"
[title]="'lang.expandNote' | translate" (click)="expandedNote = true;"
[title]="'lang.expandNote' | translate" (click)="$event.stopPropagation(); expandedNote = true;"
style="top: 40px;right: 40px;z-index:2;position:absolute;" [disabled]="signaturesService.dragging">
<ion-icon name="chatbubble-ellipses-outline"></ion-icon>
</ion-fab-button>
......@@ -70,7 +70,7 @@
<div class="note-title">
<i class="far fa-sticky-note" style="padding-right: 5px;"></i>
<span style="flex:1;">{{'lang.note' | translate}}</span>
<i class="fa fa-minus-square" style="cursor: pointer;" (click)="expandedNote = false;"
<i class="fa fa-minus-square" style="cursor: pointer;" (click)="$event.stopPropagation(); expandedNote = false;"
[title]="'lang.collapseNote' | translate"></i>
</div>
<ng-container *ngIf="mainDocument.notes !== undefined && mainDocument.notes !== null">
......
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