Files
egwcorelib/EgwCoreLib.Razor/PdfViewer.razor
T
2024-02-22 09:53:12 +01:00

12 lines
270 B
Plaintext

<div>
@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" />
}
</div>