cleanup
This commit is contained in:
parent
48d44562f3
commit
76c1d9f380
@ -7,6 +7,10 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.2.2">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="NLog" Version="5.0.5" />
|
||||
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
|
||||
</ItemGroup>
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
}
|
||||
|
||||
@* Include pspdfkit.js in your Pages/_Host.cshtml file *@
|
||||
<script src="pspdfkit.js"></script>
|
||||
<script src="app.js"></script>
|
||||
<script src="lib/pspdfkit.js"></script>
|
||||
<script src="js/app.js"></script>
|
||||
|
||||
<component type="typeof(App)" render-mode="ServerPrerendered" />
|
||||
|
||||
@ -10,7 +10,6 @@ namespace EnvelopeGenerator.Web.Services
|
||||
|
||||
private EnvelopeModel envelopeModel;
|
||||
private DocumentModel documentModel;
|
||||
private ElementModel elementModel;
|
||||
|
||||
private readonly LogConfig _logConfig;
|
||||
private readonly Logger _logger;
|
||||
@ -34,8 +33,6 @@ namespace EnvelopeGenerator.Web.Services
|
||||
else
|
||||
{
|
||||
_logger.Warn("Connection could not be established!");
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -53,7 +50,6 @@ namespace EnvelopeGenerator.Web.Services
|
||||
{
|
||||
envelopeModel = new(state);
|
||||
documentModel = new(state);
|
||||
elementModel = new(state);
|
||||
}
|
||||
|
||||
public Envelope LoadEnvelope(string envelopeReceiverId)
|
||||
|
||||
8599
EnvelopeGenerator.Web/wwwroot/index.d.ts
vendored
8599
EnvelopeGenerator.Web/wwwroot/index.d.ts
vendored
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,8 @@
|
||||
// This function will be called in the ShowEnvelope.razor page
|
||||
|
||||
// and will trigger loading of the Editor Interface
|
||||
function loadPDFFromUrl(container, url) {
|
||||
console.log("Loading PSPDFKit..");
|
||||
console.log(PSPDFKit);
|
||||
|
||||
fetch(url, { credentials: "include" })
|
||||
.then(res => res.arrayBuffer())
|
||||
@ -20,5 +20,5 @@ function loadPDFFromUrl(container, url) {
|
||||
}
|
||||
|
||||
function configurePSPDFKit(instance) {
|
||||
|
||||
console.log(instance);
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user