Skip to content

Commit

Permalink
Update license request URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
yushulx committed Sep 26, 2024
1 parent ab2583b commit 10e86a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/app/product-list/product-list.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<div>
<div>
Get a License key from <a href="https://www.dynamsoft.com/customer/license/trialLicense" target="_blank">here</a>
Get a License key from <a
href="https://www.dynamsoft.com/customer/license/trialLicense/?product=dcv&package=cross-platform"
target="_blank">here</a>
</div>
<input type="text" [(ngModel)]="inputText" [placeholder]="placeholderText">
<button (click)="activate()">Activate SDK</button>
Expand Down
2 changes: 1 addition & 1 deletion src/app/product-list/product-list.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class ProductListComponent {
};

try {
// Visit https://www.dynamsoft.com/customer/license/trialLicense to get a trial license for capture vision suite.
// Visit https://www.dynamsoft.com/customer/license/trialLicense/?product=dcv&package=cross-platform to get a trial license for capture vision suite.
let licenseKey: string = this.inputText === '' ? this.placeholderText : this.inputText;
await LicenseManager.initLicense(licenseKey, true);

Expand Down

0 comments on commit 10e86a5

Please sign in to comment.