Files
egwcorelib/EgwCoreLib.Razor/PdfViewer.razor
T
Samuele Locatelli d38d9687d5 Test display pdf
2024-02-22 11:38:51 +01:00

11 lines
218 B
Plaintext

@if (isMobile)
{
<h3>Mobile</h3>
<iframe src="@PdfUrl" width="@Width" height="@Height" />
}
else
{
<h3>Desktop</h3>
<object type="application/pdf" data="@PdfUrl" width="@Width" height="@Height" />
}