Skip to content

Commit

Permalink
Disable zoom for spreadsheets on mobile devices (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-litvinchik authored Sep 15, 2023
1 parent cbc1b3a commit c442c40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="wait" *ngIf="wait">Please wait...</div>
<div id="document" class="document" style="height: 100%">
<div [ngClass]="isDesktop ? 'panzoom auto-height' : 'panzoom mobile'" gdZoom [zoomActive]="true" [file]="file" gdSearchable>
<div [ngClass]="isDesktop ? 'panzoom auto-height' : 'panzoom mobile'" gdSearchable>
<div [ngClass]="file.showGridLines ? 'page-grid-lines' : 'page'" *ngFor="let page of file?.pages"
gdRotation [angle]="page.angle" [isHtmlMode]="mode">
<gd-excel-page *ngIf="currentPageNo == page.number" [number]="page.number" [data]="page.data" [isHtml]="mode" [angle]="page.angle"
Expand Down

0 comments on commit c442c40

Please sign in to comment.