Skip to content
Snippets Groups Projects
Commit 93f6bae4 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #15116 TIME 0:20 fix build prod

parent ed7dc3a9
No related branches found
No related tags found
No related merge requests found
...@@ -58,9 +58,9 @@ ...@@ -58,9 +58,9 @@
[class.signDisabled]="currentUser!==date.sequence" [class.signDisabled]="currentUser!==date.sequence"
[position]="{x: (date.positionX*workingAreaWidth)/100, y:(date.positionY*workingAreaHeight)/100}" [position]="{x: (date.positionX*workingAreaWidth)/100, y:(date.positionY*workingAreaHeight)/100}"
[ngDraggable]="currentUser===date.sequence && !resizing" [ngDraggable]="currentUser===date.sequence && !resizing"
(endOffset)="moveDate($event, i);" (endOffset)="moveDate($event);"
[preventDefaultEvent]="false" [preventDefaultEvent]="false"
[bounds]="bounds" [bounds]="myBounds"
[inBounds]="true" [inBounds]="true"
class="dateBlock" class="dateBlock"
[style.width.%]="date.width" [style.width.%]="date.width"
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
</button> </button>
<input type="color" #colorPicker [(ngModel)]="date.color" name="color" style="display: none;" (click)="$event.stopPropagation()"> <input type="color" #colorPicker [(ngModel)]="date.color" name="color" style="display: none;" (click)="$event.stopPropagation()">
</div> </div>
<svg [id]="'testSVG_'+ i" viewBox="0 0 130 30" preserveAspectRatio="xMinYMin meet"> <svg viewBox="0 0 130 30" preserveAspectRatio="xMinYMin meet">
<text y="10" font-size="16" dy=".3em" [style.fill]="date.color">25 décembre 2020</text></svg> <text y="10" font-size="16" dy=".3em" [style.fill]="date.color">25 décembre 2020</text></svg>
</div> </div>
</ng-container> </ng-container>
......
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